mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 23:23:21 +01:00
Backport pull request #11739 from jellyfin/release-10.9.z
Do not run trickplay on scan if disabled
Original-merge: 86f5c93434
Merged-by: Bond-009 <bond.009@outlook.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
4430706915
commit
c3091b75a3
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