소스 검색

Merge pull request #4267 from cvium/disable_invalidauthprovider

Disable invalid auth provider
Bond-009 4 년 전
부모
커밋
e93bb9aa8d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)