From 7e65885762757209e0e14ec28e99ec91380e9c2f Mon Sep 17 00:00:00 2001 From: Zsika Phillip Date: Wed, 14 Mar 2018 18:38:55 -0700 Subject: Add sign in method constants (#923) * Updates Changelog for 4.5.0 release * Adds sign-in method constants --- Firebase/Auth/Source/FIRAuth.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Firebase/Auth/Source/FIRAuth.m') diff --git a/Firebase/Auth/Source/FIRAuth.m b/Firebase/Auth/Source/FIRAuth.m index 387fab7..c4aa895 100644 --- a/Firebase/Auth/Source/FIRAuth.m +++ b/Firebase/Auth/Source/FIRAuth.m @@ -525,7 +525,7 @@ static NSMutableDictionary *gKeychainServiceNameForAppName; FIRCreateAuthURIRequest *request = [[FIRCreateAuthURIRequest alloc] initWithIdentifier:email continueURI:@"http://www.google.com/" - requestConfiguration:_requestConfiguration]; + requestConfiguration:self->_requestConfiguration]; [FIRAuthBackend createAuthURI:request callback:^(FIRCreateAuthURIResponse *_Nullable response, NSError *_Nullable error) { if (completion) { @@ -1111,7 +1111,7 @@ static NSMutableDictionary *gKeychainServiceNameForAppName; FIRGetOOBConfirmationCodeRequest *request = [FIRGetOOBConfirmationCodeRequest signInWithEmailLinkRequest:email actionCodeSettings:actionCodeSettings - requestConfiguration:_requestConfiguration]; + requestConfiguration:self->_requestConfiguration]; [FIRAuthBackend getOOBConfirmationCode:request callback:^(FIRGetOOBConfirmationCodeResponse *_Nullable response, NSError *_Nullable error) { -- cgit v1.2.3