Skip to content

Commit

Permalink
Fix SignInSilentlyAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
Thaina committed Aug 15, 2024
1 parent d4752b8 commit f7eab29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoogleSignIn/GoogleSignIn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public Task<GoogleSignInUser> SignInSilently() {

public Task<GoogleSignInUser> SignInSilentlyAsync() {
var tcs = new TaskCompletionSource<GoogleSignInUser>();
impl.SignIn().WaitForResultAsync(tcs).ContinueWith((task) => {});
impl.SignInSilently().WaitForResultAsync(tcs).ContinueWith((task) => {});
return tcs.Task;
}

Expand Down

0 comments on commit f7eab29

Please sign in to comment.