Merge pull request #4267 from cvium/disable_invalidauthprovider

Disable invalid auth provider
This commit is contained in:
Bond-009 2020-10-04 17:01:12 +02:00 committed by GitHub
commit e93bb9aa8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)