Merge pull request #11738 from crobibero/non-user-session

Don't require user when getting current session
pull/11774/head
Bond-009 2 months ago committed by GitHub
commit 4fcbeef5e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -120,7 +120,12 @@ public static class RequestHelpers
internal static async Task<SessionInfo> GetSession(ISessionManager sessionManager, IUserManager userManager, HttpContext httpContext, Guid? userId = null)
{
userId ??= httpContext.User.GetUserId();
var user = userManager.GetUserById(userId.Value);
User? user = null;
if (!userId.IsNullOrEmpty())
{
user = userManager.GetUserById(userId.Value);
}
var session = await sessionManager.LogSessionActivity(
httpContext.User.GetClient(),
httpContext.User.GetVersion(),

Loading…
Cancel
Save