aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth
diff options
context:
space:
mode:
authorGravatar Xiangtian Dai <xiangtian@google.com>2017-10-21 07:38:32 -0700
committerGravatar Paul Beusterien <paulbeusterien@google.com>2017-10-21 07:38:32 -0700
commite5d40c560268f5b8fd5dab76ffc0bae4b602135f (patch)
treefe960833ac0c07b0e5ee2944de04acc224fc2dfe /Firebase/Auth
parent104364f88d0c6d28b5ceef43faff0aff1629d3bf (diff)
Fixes a pod lint warning for implicit conversion. (#399)
Diffstat (limited to 'Firebase/Auth')
-rw-r--r--Firebase/Auth/Source/FIRAuthAppDelegateProxy.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m b/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m
index 8b8e1bb..f13e94f 100644
--- a/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m
+++ b/Firebase/Auth/Source/FIRAuthAppDelegateProxy.m
@@ -51,7 +51,8 @@ static BOOL isIOS9orLater() {
}
return NO;
#else
- return &UIApplicationOpenURLOptionsAnnotationKey; // the constant is only available on iOS 9+
+ // UIApplicationOpenURLOptionsAnnotationKey is only available on iOS 9+.
+ return &UIApplicationOpenURLOptionsAnnotationKey != NULL;
#endif
}