We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ffec0 commit da8097bCopy full SHA for da8097b
FirebaseAuthUI/FUIAuth.m
@@ -89,7 +89,9 @@ + (nullable FUIAuth *)authUIWithAuth:(FIRAuth *)auth {
89
authUI = [[FUIAuth alloc] initWithAuth:auth];
90
objc_setAssociatedObject(auth, &kAuthAssociationKey, authUI,
91
OBJC_ASSOCIATION_RETAIN_NONATOMIC);
92
- auth.additionalFrameworkMarker = kFirebaseAuthUIFrameworkMarker;
+ if ([auth respondsToSelector:@selector(setAdditionalFrameworkMarker:)]) {
93
+ auth.additionalFrameworkMarker = kFirebaseAuthUIFrameworkMarker;
94
+ }
95
}
96
return authUI;
97
0 commit comments