ソースを参照

Turn off block unrated by default

Eric Reed 12 年 前
コミット
096dd4d508
1 ファイル変更1 行追加1 行削除
  1. 1 1
      MediaBrowser.Model/Configuration/UserConfiguration.cs

+ 1 - 1
MediaBrowser.Model/Configuration/UserConfiguration.cs

@@ -54,7 +54,7 @@ namespace MediaBrowser.Model.Configuration
         public UserConfiguration()
         {
             IsAdministrator = true;
-            BlockNotRated = true;
+            BlockNotRated = false;
         }
     }
 }