mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Do not run trickplay on scan if disabled
This commit is contained in:
parent
76854b5eff
commit
2cebd5e05f
@ -101,7 +101,7 @@ public class TrickplayProvider : ICustomMetadataProvider<Episode>,
|
|||||||
bool? enableDuringScan = libraryOptions?.ExtractTrickplayImagesDuringLibraryScan;
|
bool? enableDuringScan = libraryOptions?.ExtractTrickplayImagesDuringLibraryScan;
|
||||||
bool replace = options.ReplaceAllImages;
|
bool replace = options.ReplaceAllImages;
|
||||||
|
|
||||||
if (options.IsAutomated && !enableDuringScan.GetValueOrDefault(false))
|
if (!enableDuringScan.GetValueOrDefault(false))
|
||||||
{
|
{
|
||||||
return ItemUpdateType.None;
|
return ItemUpdateType.None;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user