Skip to content

Commit

Permalink
[修复]1. 修复函数调用写错的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
AlianBlank committed Aug 21, 2024
1 parent 9ee4b89 commit b4e8c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GameFrameX.Launcher/Common/Session/SessionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void KickOffLineByUserId(long roleId)
/// <param name="sessionId">链接ID</param>
public static Session Get(string sessionId)
{
SessionMap.TryRemove(sessionId, out var value);
SessionMap.TryGetValue(sessionId, out var value);
return value;
}

Expand Down

0 comments on commit b4e8c46

Please sign in to comment.