Skip to content

Commit

Permalink
Merge pull request jellyfin#4267 from cvium/disable_invalidauthprovider
Browse files Browse the repository at this point in the history
Disable invalid auth provider
  • Loading branch information
Bond-009 committed Oct 4, 2020
2 parents c0be770 + a839b01 commit e93bb9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class InvalidAuthProvider : IAuthenticationProvider
public string Name => "InvalidOrMissingAuthenticationProvider";

/// <inheritdoc />
public bool IsEnabled => true;
public bool IsEnabled => false;

/// <inheritdoc />
public Task<ProviderAuthenticationResult> Authenticate(string username, string password)
Expand Down

0 comments on commit e93bb9a

Please sign in to comment.