Skip to content

Commit

Permalink
Merge pull request #109 from HAECHI-LABS/rasplarry/hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
raspLarry authored Oct 4, 2023
2 parents 14196fa + d264a42 commit d2c2536
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion haechi.face.unity.sdk/Runtime/Client/Face/LoginOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static LoginOption All()
.ConvertAll(n => n.HostValue()));
}

public static LoginOption of(List<LoginProviderType> providers)
public static LoginOption Of(List<LoginProviderType> providers)
{
return new LoginOption(new List<LoginProviderType>(providers)
.ConvertAll(n => n.HostValue()));
Expand Down
2 changes: 1 addition & 1 deletion haechi.face.unity.sdk/Samples/Script/FaceWalletManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ private async void WalletConnect()

private async Task<LoginResult> _loginAndGetBalanceAsync([AllowNull] List<LoginProviderType> providers)
{
LoginOption option = providers == null ? null : LoginOption.of(providers);
LoginOption option = providers == null ? null : LoginOption.Of(providers);
FaceLoginResponse response = await this._face.Auth().Login(option);
string address = response.wallet.Address;
string userVerificationToken = response.userVerificationToken;
Expand Down
2 changes: 1 addition & 1 deletion haechi.face.unity.sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haechi.face.unity.sdk",
"version": "1.3.18",
"version": "1.3.20",
"displayName": "Face Unity SDK",
"description": "Face Unity SDK that helps integrating Face Wallet on the Unity platform",
"documentationUrl": "https://docs.facewallet.xyz/docs/overview-1",
Expand Down

0 comments on commit d2c2536

Please sign in to comment.