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) {
9595 FIREBASE_ASSERT_RETURN (Future<SignInResult>(), handler_);
9696 Future<SignInResult> future =
9797 CreateAuthFuture (auth_data, kAuthFn_LinkWithProvider );
98- if (future.status () ! = kFutureStatusPending ) {
98+ if (future.status () = = kFutureStatusPending ) {
9999 AuthCompletionHandle* auth_completion_handle = new AuthCompletionHandle (
100100 SafeFutureHandle<SignInResult>(future.GetHandle ()), auth_data);
101101 handler_->OnLink (provider_data_, auth_completion_handle);
@@ -109,7 +109,7 @@ Future<SignInResult> FederatedOAuthProvider::Reauthenticate(
109109 FIREBASE_ASSERT_RETURN (Future<SignInResult>(), handler_);
110110 Future<SignInResult> future =
111111 CreateAuthFuture (auth_data, kAuthFn_ReauthenticateWithProvider );
112- if (future.status () ! = kFutureStatusPending ) {
112+ if (future.status () = = kFutureStatusPending ) {
113113 AuthCompletionHandle* auth_completion_handle = new AuthCompletionHandle (
114114 SafeFutureHandle<SignInResult>(future.GetHandle ()), auth_data);
115115 handler_->OnReauthenticate (provider_data_, auth_completion_handle);
You can’t perform that action at this time.
0 commit comments