Added work remaining url for remote extraction client

This commit is contained in:
2026-06-12 19:03:31 +02:00
parent 4c637de442
commit f1cffa7dfa
8 changed files with 220 additions and 4 deletions
@@ -24,4 +24,13 @@ public interface ITruthDataService
/// </summary>
/// <param name="itemId">The Jellyfin library item id.</param>
void Invalidate(Guid itemId);
/// <summary>
/// Cheaply checks whether truth data exists for an item (managed upload
/// or sidecar file), without loading or caching it.
/// </summary>
/// <param name="itemId">The Jellyfin library item id.</param>
/// <param name="itemPath">The item's media file path.</param>
/// <returns><c>true</c> if truth data exists for this item.</returns>
bool HasTruth(Guid itemId, string itemPath);
}