Omit external trickplay directory if itme has no path

This commit is contained in:
Shadowghost
2026-06-07 14:56:05 +02:00
parent bdb8250300
commit 8aaea6ea52

View File

@@ -121,7 +121,11 @@ public class PathManager : IPathManager
}
paths.Add(GetTrickplayDirectory(item, false));
paths.Add(GetTrickplayDirectory(item, true));
if (!string.IsNullOrEmpty(item.Path))
{
paths.Add(GetTrickplayDirectory(item, true));
}
paths.Add(GetChapterImageFolderPath(item));
return paths;