File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ public class AppDelegate: ExpoAppDelegate {
355
355
options : [UIApplication .OpenURLOptionsKey : Any ] = [:]
356
356
) - > Bool {
357
357
// @generated begin @react-native-firebase/auth-openURL - expo prebuild (DO NOT MODIFY)
358
- if url.host.toLowerCase () == "firebaseauth" {
358
+ if url.host?.lowercased () == "firebaseauth" {
359
359
// invocations for Firebase Auth are handled elsewhere and should not be forwarded to Expo Router
360
360
return false
361
361
}
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export function modifyObjcAppDelegate(contents: string): string | null {
155
155
// NOTE: `mergeContents()` doesn't support newlines for the `anchor` regex, so we have to replace it manually
156
156
const skipOpenUrlForFirebaseAuthBlockSwift : string = `\
157
157
// @generated begin @react-native-firebase/auth-openURL - expo prebuild (DO NOT MODIFY)
158
- if url.host.toLowerCase () == "firebaseauth" {
158
+ if url.host?.lowercased () == "firebaseauth" {
159
159
// invocations for Firebase Auth are handled elsewhere and should not be forwarded to Expo Router
160
160
return false
161
161
}
You can’t perform that action at this time.
0 commit comments