mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-08 23:04:42 +01:00
Merge pull request #8995 from daullmer/nfo-remote-images-initial
Use nfo provided remote images on initial scan
This commit is contained in:
commit
223aaec93f
1 changed files with 2 additions and 1 deletions
|
|
@ -685,7 +685,8 @@ namespace MediaBrowser.Providers.Manager
|
|||
{
|
||||
try
|
||||
{
|
||||
if (!options.IsReplacingImage(remoteImage.Type))
|
||||
if (item.ImageInfos.Any(x => x.Type == remoteImage.Type)
|
||||
&& !options.IsReplacingImage(remoteImage.Type))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue