summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-06-08 15:42:49 -0400
committerNicoleYarroch <nicole@livio.io>2020-06-08 15:42:49 -0400
commitc7e45ff973dd13b8e17ab88a6b2e76eb1c22e4b8 (patch)
treee20efc92d2dfd0007b649b58743dd4eba5f86e03
parent33f097b47c760601a4645cfdda67706722ade3aa (diff)
downloadsdl_ios-c7e45ff973dd13b8e17ab88a6b2e76eb1c22e4b8.tar.gz
Handler now called if transport is `nil`
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--SmartDeviceLink/SDLProxy.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink/SDLProxy.m
index 31770ed87..914aaeefe 100644
--- a/SmartDeviceLink/SDLProxy.m
+++ b/SmartDeviceLink/SDLProxy.m
@@ -190,6 +190,8 @@ static float DefaultConnectionTimeout = 45.0;
[strongSelf.urlSession invalidateAndCancel];
return completionHandler();
}];
+ } else {
+ return completionHandler();
}
}