Skip to content

Commit f7eab29

Browse files
committed
Fix SignInSilentlyAsync
1 parent d4752b8 commit f7eab29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: GoogleSignIn/GoogleSignIn.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public Task<GoogleSignInUser> SignInSilently() {
140140

141141
public Task<GoogleSignInUser> SignInSilentlyAsync() {
142142
var tcs = new TaskCompletionSource<GoogleSignInUser>();
143-
impl.SignIn().WaitForResultAsync(tcs).ContinueWith((task) => {});
143+
impl.SignInSilently().WaitForResultAsync(tcs).ContinueWith((task) => {});
144144
return tcs.Task;
145145
}
146146

0 commit comments

Comments
 (0)