diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-04-23 14:10:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-23 14:10:22 +0900 |
| commit | 97d7ffc45899ba2a3b464e1cb6defcf06e29eebb (patch) | |
| tree | acd87502f2fe4b703efa676621fdbf98678baeb8 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | 07c4dfd8fe7331b80389ae5002397ae134b14f9e (diff) | |
| parent | 07326c1d9b1a74b6802cd4187104c4272d59e28e (diff) | |
Merge pull request #2861 from mark-monteiro/fix-auth-response-codes
Fix Auth Response Codes
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index de768333d..c93c02c48 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -1414,7 +1414,7 @@ namespace Emby.Server.Implementations.Session if (user == null) { AuthenticationFailed?.Invoke(this, new GenericEventArgs<AuthenticationRequest>(request)); - throw new SecurityException("Invalid username or password entered."); + throw new AuthenticationException("Invalid username or password entered."); } if (!string.IsNullOrEmpty(request.DeviceId) |
