Browse Source

Use nfo provided remote images on initial scan

David Ullmer 2 years ago
parent
commit
6e7b0a8cb2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      MediaBrowser.Providers/Manager/MetadataService.cs

+ 2 - 1
MediaBrowser.Providers/Manager/MetadataService.cs

@@ -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;
                                 }