Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions FirebaseAuth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Unreleased
- [fixed] Fall back to reCAPTCHA for phone auth app verification if the push notification is not received before the timeout. (#8653)

# 8.6.0
- [fixed] Annotated platform-level availability using `API_UNAVAILABLE` instead of conditionally compiling certain methods with `#if` directives (#8451).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,12 @@ - (void)verifyClientWithUIDelegate:(nullable id<FIRAuthUIDelegate>)UIDelegate
FIRLogWarning(kFIRLoggerAuth, @"I-AUT000014",
@"Failed to receive remote notification "
@"to verify app identity within "
@"%.0f second(s)",
@"%.0f second(s), falling back to "
@"reCAPTCHA verification.",
timeout);
[self reCAPTCHAFlowWithUIDelegate:UIDelegate
completion:completion];
return;
}
completion(credential, nil, nil);
}];
Expand Down
Loading