Browse Source

Make MaxSessions default 0

Joshua M. Boniface 4 years ago
parent
commit
1bfe9713af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Model/Users/UserPolicy.cs

+ 1 - 1
MediaBrowser.Model/Users/UserPolicy.cs

@@ -146,7 +146,7 @@ namespace MediaBrowser.Model.Users
 
             LoginAttemptsBeforeLockout = -1;
 
-            MaxActiveSessions = -1;
+            MaxActiveSessions = 0;
 
             EnableAllChannels = true;
             EnabledChannels = Array.Empty<Guid>();