mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-02 18:43:56 +02:00
Do not run trickplay on scan if disabled
This commit is contained in:
parent
76854b5eff
commit
2cebd5e05f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue