This commit is contained in:
john 2025-06-01 23:35:44 +02:00
parent c2846aed4d
commit 120adf806d

View file

@ -23,7 +23,6 @@ internal class SessionAuthenticationHandler(
var sessionId = this.Context.GetSessionId();
if (sessionId is null)
{
Logger.LogDebug("{TraceId} SessionId was null ", this.Context.TraceIdentifier);
@ -44,7 +43,6 @@ internal class SessionAuthenticationHandler(
return await FailAndDeleteSession(sessionId);
}
var user = await authService.GetUserWithId(session.UserId);
if (user is null)