File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
auth/src/desktop/auth_providers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ Future<SignInResult> FederatedOAuthProvider::Link(AuthData* auth_data) {
95
95
FIREBASE_ASSERT_RETURN (Future<SignInResult>(), handler_);
96
96
Future<SignInResult> future =
97
97
CreateAuthFuture (auth_data, kAuthFn_LinkWithProvider );
98
- if (future.status () ! = kFutureStatusPending ) {
98
+ if (future.status () = = kFutureStatusPending ) {
99
99
AuthCompletionHandle* auth_completion_handle = new AuthCompletionHandle (
100
100
SafeFutureHandle<SignInResult>(future.GetHandle ()), auth_data);
101
101
handler_->OnLink (provider_data_, auth_completion_handle);
@@ -109,7 +109,7 @@ Future<SignInResult> FederatedOAuthProvider::Reauthenticate(
109
109
FIREBASE_ASSERT_RETURN (Future<SignInResult>(), handler_);
110
110
Future<SignInResult> future =
111
111
CreateAuthFuture (auth_data, kAuthFn_ReauthenticateWithProvider );
112
- if (future.status () ! = kFutureStatusPending ) {
112
+ if (future.status () = = kFutureStatusPending ) {
113
113
AuthCompletionHandle* auth_completion_handle = new AuthCompletionHandle (
114
114
SafeFutureHandle<SignInResult>(future.GetHandle ()), auth_data);
115
115
handler_->OnReauthenticate (provider_data_, auth_completion_handle);
You can’t perform that action at this time.
0 commit comments