Skip to content

Commit 6812dd5

Browse files
author
Chuan Ren
authored
Add url handler for anonymous and oauth (#681)
1 parent 46c4321 commit 6812dd5

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

AnonymousAuth/FirebaseAnonymousAuthUI/FUIAnonymousAuth.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,10 @@ - (void)signOut {
150150
}
151151
}
152152

153+
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(nullable NSString *)sourceApplication {
154+
return NO;
155+
}
156+
153157
@end
154158

155159
NS_ASSUME_NONNULL_END

OAuth/FirebaseOAuthUI/FUIOAuth.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ - (void)signOut {
208208
}];
209209
}
210210

211+
- (BOOL)handleOpenURL:(NSURL *)URL sourceApplication:(nullable NSString *)sourceApplication {
212+
return NO;
213+
}
214+
211215
@end
212216

213217
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)