We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 770da60 commit e0d4c34Copy full SHA for e0d4c34
GameFrameX.Apps/Account/Login/Component/LoginComponent.cs
@@ -43,6 +43,6 @@ public sealed class LoginComponent : StateComponent<LoginState>
43
public async Task<PlayerState> OnPlayerLogin(ReqPlayerLogin reqLogin)
44
{
45
MetricsPlayerHelper.LoginCounterOptions.Inc();
46
- return await GameDb.FindAsync<PlayerState>(m => m.Id == reqLogin.Id);
+ return await GameDb.FindAsync<PlayerState>(m => m.Id == reqLogin.Id, false);
47
}
48
0 commit comments