This commit is contained in:
Developer
2026-06-18 10:06:49 +08:00
parent fdd81aef19
commit ebd5dafa2d
922 changed files with 145347 additions and 297 deletions

View File

@@ -41,11 +41,11 @@ namespace IchniOnline.Online.Models
public void UpdateFromServerResponse(LoginResponseDto response)
{
this.jwtToken = response.Token;
this.userId = response.User.UserId;
this.displayName = response.User.DisplayName;
this.avatarUrl = response.User.AvatarUrl;
this.permission = response.User.Permission;
this.jwtToken = response.token;
this.userId = response.user.userId;
this.displayName = response.user.displayName;
this.avatarUrl = response.user.avatarUrl;
this.permission = response.user.permission;
this.hasServerSession = true;
}