Explorar el Código

Turn off block unrated by default

Eric Reed hace 12 años
padre
commit
096dd4d508
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
         }
     }
 }