Merge pull request #471 from pangeachat/access-token-fix

added fix for pangea profile toJson method
This commit is contained in:
ggurdin 2024-07-16 09:53:47 -04:00 committed by GitHub
commit 13f980db26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -420,7 +420,7 @@ class PangeaProfileResponse {
factory PangeaProfileResponse.fromJson(Map<String, dynamic> json) {
return PangeaProfileResponse(
profile: PangeaProfile.fromJson(json),
profile: PangeaProfile.fromJson(json[ModelKey.userProfile]),
access: json[ModelKey.userAccess],
);
}