Skip to content

Commit e5d40c5

Browse files
XiangtianDaipaulb777
authored andcommitted
Fixes a pod lint warning for implicit conversion. (#399)
1 parent 104364f commit e5d40c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firebase/Auth/Source/FIRAuthAppDelegateProxy.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ static BOOL isIOS9orLater() {
5151
}
5252
return NO;
5353
#else
54-
return &UIApplicationOpenURLOptionsAnnotationKey; // the constant is only available on iOS 9+
54+
// UIApplicationOpenURLOptionsAnnotationKey is only available on iOS 9+.
55+
return &UIApplicationOpenURLOptionsAnnotationKey != NULL;
5556
#endif
5657
}
5758

0 commit comments

Comments
 (0)