summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2017-03-02 14:27:40 -0800
committerMuller, Alexander (A.) <amulle19@ford.com>2017-03-02 14:27:40 -0800
commite9b6ae185f19898514dc5185b695211852c2f0f5 (patch)
treed7012267f46b14f6dacad1ac0c05e2f0c76b94d4
parent708f085f5e3e976f0019e768e0cf5631b4575432 (diff)
downloadsdl_ios-hotfix/issue_560.tar.gz
Fixed issue with incorrectly setting state on manager disconnect.hotfix/issue_560
-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];
}