summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-03 10:03:35 -0500
committerGitHub <noreply@github.com>2017-03-03 10:03:35 -0500
commiteaa209ea3c9efd66f5c38e242b181460d0e59f18 (patch)
treed7012267f46b14f6dacad1ac0c05e2f0c76b94d4
parent708f085f5e3e976f0019e768e0cf5631b4575432 (diff)
parente9b6ae185f19898514dc5185b695211852c2f0f5 (diff)
downloadsdl_ios-eaa209ea3c9efd66f5c38e242b181460d0e59f18.tar.gz
Merge pull request #561 from smartdevicelink/hotfix/issue_560
[Example App] Fixed issue with incorrectly setting state on manager disconnect
-rw-r--r--SmartDeviceLink_Example/Classes/ProxyManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m
index 7096f4bd9..c7272b6c5 100644
--- a/SmartDeviceLink_Example/Classes/ProxyManager.m
+++ b/SmartDeviceLink_Example/Classes/ProxyManager.m
@@ -357,7 +357,7 @@ NS_ASSUME_NONNULL_BEGIN
// Reset our state
self.firstTimeState = SDLHMIFirstStateNone;
self.initialShowState = SDLHMIInitialShowStateNone;
- _state = ProxyStateStopped;
+ [self sdlex_updateProxyState:ProxyStateStopped];
if (ShouldRestartOnDisconnect) {
[self startManager];
}