summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-09-23 15:15:20 -0400
committerNicoleYarroch <nicole@livio.io>2020-09-23 15:15:20 -0400
commit9ab456d329965b127608627b469fdfcdfd4c2842 (patch)
tree5e1c5b9b01fb403221ece52ef4cacef98cce6819
parent47a088f15d92ae034422034b35955f4caeebdaad (diff)
downloadsdl_ios-9ab456d329965b127608627b469fdfcdfd4c2842.tar.gz
Fixed wrong using wrong class
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--SmartDeviceLink/private/SDLResponseDispatcher.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/private/SDLResponseDispatcher.m b/SmartDeviceLink/private/SDLResponseDispatcher.m
index d4273859c..ac7adcc92 100644
--- a/SmartDeviceLink/private/SDLResponseDispatcher.m
+++ b/SmartDeviceLink/private/SDLResponseDispatcher.m
@@ -129,7 +129,7 @@ NS_ASSUME_NONNULL_BEGIN
SDLAlert *alert = (SDLAlert *)request;
[self sdl_addToCustomButtonHandlerMap:alert.softButtons];
} else if ([request isKindOfClass:[SDLAlertManeuver class]]) {
- SDLAlert *alertManeuver = (SDLAlertManeuver *)request;
+ SDLAlertManeuver *alertManeuver = (SDLAlertManeuver *)request;
[self sdl_addToCustomButtonHandlerMap:alertManeuver.softButtons];
} else if ([request isKindOfClass:[SDLSubtleAlert class]]) {
SDLSubtleAlert *subtleAlert = (SDLSubtleAlert *)request;