Browse Source

Disable invalid auth provider

cvium 4 years ago
parent
commit
a839b015f9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jellyfin.Server.Implementations/Users/InvalidAuthProvider.cs

+ 1 - 1
Jellyfin.Server.Implementations/Users/InvalidAuthProvider.cs

@@ -15,7 +15,7 @@ namespace Jellyfin.Server.Implementations.Users
         public string Name => "InvalidOrMissingAuthenticationProvider";
 
         /// <inheritdoc />
-        public bool IsEnabled => true;
+        public bool IsEnabled => false;
 
         /// <inheritdoc />
         public Task<ProviderAuthenticationResult> Authenticate(string username, string password)