Merge pull request #11739 from Shadowghost/fix-trickplay

Do not run trickplay on scan if disabled
pull/11774/head
Bond-009 2 months ago committed by GitHub
commit 86f5c93434
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -101,7 +101,7 @@ public class TrickplayProvider : ICustomMetadataProvider<Episode>,
bool? enableDuringScan = libraryOptions?.ExtractTrickplayImagesDuringLibraryScan;
bool replace = options.ReplaceAllImages;
if (options.IsAutomated && !enableDuringScan.GetValueOrDefault(false))
if (!enableDuringScan.GetValueOrDefault(false))
{
return ItemUpdateType.None;
}

Loading…
Cancel
Save