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
97
97
completion (error);
98
98
}
99
99
} else {
100
- [FIRAuth .auth
100
+ [self .user .auth
101
101
completeSignInWithAccessToken: response.IDToken
102
102
accessTokenExpirationDate: nil
103
103
refreshToken: response.refreshToken
@@ -110,7 +110,7 @@ - (void)enrollWithAssertion:(FIRMultiFactorAssertion *)assertion
110
110
additionalUserInfo: nil ];
111
111
112
112
FIRAuthDataResultCallback
113
- decoratedCallback = [FIRAuth .auth
113
+ decoratedCallback = [self .user .auth
114
114
signInFlowAuthDataResultCallbackByDecoratingCallback:
115
115
^(FIRAuthDataResult
116
116
*_Nullable authResult,
@@ -145,7 +145,7 @@ - (void)unenrollWithFactorUID:(NSString *)factorUID
145
145
completion (error);
146
146
}
147
147
} else {
148
- [FIRAuth .auth
148
+ [self .user .auth
149
149
completeSignInWithAccessToken: response.IDToken
150
150
accessTokenExpirationDate: nil
151
151
refreshToken: response.refreshToken
You can’t perform that action at this time.
0 commit comments