Skip to content

Commit

Permalink
Fixed NftApi sample bug with incorrect key error; (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-karuna authored Jul 27, 2023
1 parent a84e284 commit ea6267b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [unreleased]
### Fixed
- NftApi sample bug with incorrect key error.


## [2.0.0] - 2023-07-11
### Fixed
- [Bug](https://github.com/trilitech/tezos-unity-sdk/issues/102) with standalone IL2CPP build fails
Expand Down
2 changes: 1 addition & 1 deletion Samples~/Scripts/NftApiSample/DataManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void Start()
void OnAccountConnected(string result)
{
var json = JsonSerializer.Deserialize<JsonElement>(result);
var account = json.GetProperty("account");
var account = json.GetProperty("accountInfo");
_connectedAddress = account.GetProperty("address").GetString();
}

Expand Down

0 comments on commit ea6267b

Please sign in to comment.