File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
FirebaseAuth/Sources/MultiFactor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ - (void)enrollWithAssertion:(FIRMultiFactorAssertion *)assertion
9797 completion (error);
9898 }
9999 } else {
100- [FIRAuth .auth
100+ [self .user .auth
101101 completeSignInWithAccessToken: response.IDToken
102102 accessTokenExpirationDate: nil
103103 refreshToken: response.refreshToken
@@ -110,7 +110,7 @@ - (void)enrollWithAssertion:(FIRMultiFactorAssertion *)assertion
110110 additionalUserInfo: nil ];
111111
112112 FIRAuthDataResultCallback
113- decoratedCallback = [FIRAuth .auth
113+ decoratedCallback = [self .user .auth
114114 signInFlowAuthDataResultCallbackByDecoratingCallback:
115115 ^(FIRAuthDataResult
116116 *_Nullable authResult,
@@ -145,7 +145,7 @@ - (void)unenrollWithFactorUID:(NSString *)factorUID
145145 completion (error);
146146 }
147147 } else {
148- [FIRAuth .auth
148+ [self .user .auth
149149 completeSignInWithAccessToken: response.IDToken
150150 accessTokenExpirationDate: nil
151151 refreshToken: response.refreshToken
You can’t perform that action at this time.
0 commit comments