summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-04-13 15:35:16 -0400
committerGitHub <noreply@github.com>2017-04-13 15:35:16 -0400
commitdefbaecd441a10655498eebd5cfd1e57e5e3cf87 (patch)
treeb978040fa9b47f89ea3af681dd0afd6dc933e85d
parent9359cbcef78ed22c20dcb12241fe9411c33c7a84 (diff)
parent472fb3787c8ed374daeb515a869d01f5c52627c5 (diff)
downloadsdl_ios-defbaecd441a10655498eebd5cfd1e57e5e3cf87.tar.gz
Merge pull request #598 from smartdevicelink/hotfix/issue_590
Fix reconnection attempts unable to be stopped
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLLifecycleManager.m b/SmartDeviceLink/SDLLifecycleManager.m
index 29a6f7a6d..a060cecdf 100644
--- a/SmartDeviceLink/SDLLifecycleManager.m
+++ b/SmartDeviceLink/SDLLifecycleManager.m
@@ -148,7 +148,7 @@ SDLLifecycleState *const SDLLifecycleStateReady = @"Ready";
return @{
SDLLifecycleStateStopped: @[SDLLifecycleStateStarted],
SDLLifecycleStateStarted : @[SDLLifecycleStateConnected, SDLLifecycleStateStopped, SDLLifecycleStateReconnecting],
- SDLLifecycleStateReconnecting: @[SDLLifecycleStateStarted],
+ SDLLifecycleStateReconnecting: @[SDLLifecycleStateStarted, SDLLifecycleStateStopped],
SDLLifecycleStateConnected: @[SDLLifecycleStateStopped, SDLLifecycleStateReconnecting, SDLLifecycleStateRegistered],
SDLLifecycleStateRegistered: @[SDLLifecycleStateStopped, SDLLifecycleStateReconnecting, SDLLifecycleStateSettingUpManagers],
SDLLifecycleStateSettingUpManagers: @[SDLLifecycleStateStopped, SDLLifecycleStateReconnecting, SDLLifecycleStatePostManagerProcessing],