Added a check for the ReplaceAllImages value before updating an images

pull/10630/head
axl 7 months ago
parent 099632f37e
commit 1f584a644b

@ -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…
Cancel
Save