summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-01-10 14:03:06 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-01-10 14:03:06 -0500
commit00fb8b72d62b21474147a0d871f0c130403b605a (patch)
treea2dc7be551d91b5a035d2ec7c902c51a97da37d9
parent9c4645631ff62e6df2e9278ffc004c9377e4f26e (diff)
downloadsdl_ios-release/4.5.0.tar.gz
Follow style guide for boolean checkrelease/4.5.0
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLLifecycleManager.m b/SmartDeviceLink/SDLLifecycleManager.m
index f66318fa3..6c761606d 100644
--- a/SmartDeviceLink/SDLLifecycleManager.m
+++ b/SmartDeviceLink/SDLLifecycleManager.m
@@ -306,7 +306,7 @@ SDLLifecycleState *const SDLLifecycleStateReady = @"Ready";
- (void)sdl_sendAppIcon:(nullable SDLFile *)appIcon withCompletion:(void (^)(void))completion {
// If no app icon was set, just move on to ready
- if (appIcon == nil || self.registerResponse.displayCapabilities.graphicSupported.boolValue == NO) {
+ if (appIcon == nil || !self.registerResponse.displayCapabilities.graphicSupported.boolValue) {
completion();
return;
}