Skip to content

Commit

Permalink
Fixed missing call to CallGenericBridge
Browse files Browse the repository at this point in the history
  • Loading branch information
m0skit0 committed Jun 29, 2020
1 parent 58ab0a1 commit 69af355
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ internal class AchievementClientWrapper : JavaObjectWrapper, IAchievementsClient

public AchievementClientWrapper(AndroidJavaObject javaObject) : base(javaObject) { }

public void ShowAchievementList(Action onSuccess, Action<HMSException> onFailure) => new GenericBridgeWrapper(base.JavaObject).CallGenericBridge(onSuccess, onFailure, "getShowAchievementListIntent");
public void ShowAchievementList(Action onSuccess, Action<HMSException> onFailure) =>
this.CallGenericBridge("getShowAchievementListIntent", onSuccess, onFailure);

public Task ShowAchievementListAsync()
{
Expand Down

0 comments on commit 69af355

Please sign in to comment.