aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2023-01-07 11:31:10 -0700
committerGitHub <noreply@github.com>2023-01-07 11:31:10 -0700
commit678bcf9a80ef1fcf7928df6e94030028b4d6c1af (patch)
tree168189e91ec8a145b06bc7fb78ac8915007ad155 /Emby.Server.Implementations/Session
parent769c48c629bae859ba713d66b1a55f35aca708b6 (diff)
Use EventManager for AuthenticationSuccess, AuthenticationFailure (#8960)
Diffstat (limited to 'Emby.Server.Implementations/Session')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs11
1 files changed, 2 insertions, 9 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 2f60d01a9..afa3721b8 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -95,12 +95,6 @@ namespace Emby.Server.Implementations.Session
_deviceManager.DeviceOptionsUpdated += OnDeviceManagerDeviceOptionsUpdated;
}
- /// <inheritdoc />
- public event EventHandler<GenericEventArgs<AuthenticationRequest>> AuthenticationFailed;
-
- /// <inheritdoc />
- public event EventHandler<GenericEventArgs<AuthenticationResult>> AuthenticationSucceeded;
-
/// <summary>
/// Occurs when playback has started.
/// </summary>
@@ -1468,7 +1462,7 @@ namespace Emby.Server.Implementations.Session
if (user is null)
{
- AuthenticationFailed?.Invoke(this, new GenericEventArgs<AuthenticationRequest>(request));
+ await _eventManager.PublishAsync(new GenericEventArgs<AuthenticationRequest>(request)).ConfigureAwait(false);
throw new AuthenticationException("Invalid username or password entered.");
}
@@ -1504,8 +1498,7 @@ namespace Emby.Server.Implementations.Session
ServerId = _appHost.SystemId
};
- AuthenticationSucceeded?.Invoke(this, new GenericEventArgs<AuthenticationResult>(returnResult));
-
+ await _eventManager.PublishAsync(new GenericEventArgs<AuthenticationResult>(returnResult)).ConfigureAwait(false);
return returnResult;
}