mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 08:37:07 +00:00
Added a check for the ReplaceAllImages value before updating an images
This commit is contained in:
parent
099632f37e
commit
1f584a644b
1 changed files with 5 additions and 0 deletions
|
|
@ -60,6 +60,11 @@ namespace Emby.Server.Implementations.Images
|
|||
return ItemUpdateType.None;
|
||||
}
|
||||
|
||||
if (!options.ReplaceAllImages)
|
||||
{
|
||||
return ItemUpdateType.None;
|
||||
}
|
||||
|
||||
var updateType = ItemUpdateType.None;
|
||||
|
||||
if (SupportedImages.Contains(ImageType.Primary))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue