Bladeren bron

Fix crash when calling back to app without a registration flow

Jeremy Durham 5 jaren geleden
bovenliggende
commit
dc9ecb0a34
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      FirebaseAppDistribution/Sources/FIRAppDistributionAppDelegateInterceptor.m

+ 1 - 1
FirebaseAppDistribution/Sources/FIRAppDistributionAppDelegateInterceptor.m

@@ -108,7 +108,7 @@ SFAuthenticationSession *_safariAuthenticationVC;
 - (BOOL)application:(UIApplication *)application
             openURL:(NSURL *)URL
             options:(NSDictionary<NSString *, id> *)options {
-  [self setRegistrationFlowCompletion:nil];
+  [self registrationFlowCompletion];
   [self resetUIState];
   return NO;
 }