diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2016-09-02 15:19:51 -0400 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2016-09-02 15:19:51 -0400 |
commit | eec7d37274a3842e0a63dfe119452f37b1e12000 (patch) | |
tree | 39fc9ad515464a7d6ca9d8a8203992a86cf51201 /SmartDeviceLink | |
parent | 585b827500d3ad7e5da3435e3cecc7b3c45e6997 (diff) | |
download | sdl_ios-eec7d37274a3842e0a63dfe119452f37b1e12000.tar.gz |
Fix a UnregisterResponse being sent when the unregister notification is fired
Diffstat (limited to 'SmartDeviceLink')
-rw-r--r-- | SmartDeviceLink/SDLNotificationDispatcher.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLNotificationDispatcher.m b/SmartDeviceLink/SDLNotificationDispatcher.m index 50022e342..48b9f525f 100644 --- a/SmartDeviceLink/SDLNotificationDispatcher.m +++ b/SmartDeviceLink/SDLNotificationDispatcher.m @@ -243,7 +243,7 @@ NS_ASSUME_NONNULL_BEGIN } - (void)onOnAppInterfaceUnregistered:(SDLOnAppInterfaceUnregistered *)notification { - [self postRPCNotificationNotification:SDLDidReceiveUnregisterAppInterfaceResponse notification:notification]; + [self postRPCNotificationNotification:SDLDidReceiveAppUnregisteredNotification notification:notification]; } - (void)onOnAudioPassThru:(SDLOnAudioPassThru *)notification { |