瀏覽代碼

Merge pull request #6102 from LinFor/pr_dont_prefer_omdb_rating

Don't prefer OMDB rating over all other providers
Claus Vium 4 年之前
父節點
當前提交
6b9251fa10
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Providers/Manager/ProviderUtils.cs

+ 1 - 1
MediaBrowser.Providers/Manager/ProviderUtils.cs

@@ -55,7 +55,7 @@ namespace MediaBrowser.Providers.Manager
                 }
             }
 
-            if (replaceData || !target.CommunityRating.HasValue || (source.CommunityRating.HasValue && string.Equals(sourceResult.Provider, "The Open Movie Database", StringComparison.OrdinalIgnoreCase)))
+            if (replaceData || !target.CommunityRating.HasValue)
             {
                 target.CommunityRating = source.CommunityRating;
             }