summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
diff options
context:
space:
mode:
authorMihail Vyrko <mvyrko@qulix.com>2019-03-20 14:32:34 +0300
committerMihail Vyrko <mvyrko@qulix.com>2019-03-20 14:32:34 +0300
commitf9002ef9e158a7c0dd84e204345af83517a27361 (patch)
treefa4e3bc7b93d022c002d8a4e647a40593b22c7d1 /SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
parent48278d6ffa6dfea71f11a3dddb10f773fe56ba47 (diff)
downloadsdl_ios-f9002ef9e158a7c0dd84e204345af83517a27361.tar.gz
verify type of returned objects
Diffstat (limited to 'SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m')
-rw-r--r--SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m b/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
index 77c95a240..3b4ff5e07 100644
--- a/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
+++ b/SmartDeviceLink/SDLPerformAppServiceInteractionResponse.m
@@ -38,7 +38,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (nullable NSString *)serviceSpecificResult {
- return [parameters sdl_objectForName:SDLRPCParameterNameServiceSpecificResult];
+ return [parameters sdl_objectForName:SDLRPCParameterNameServiceSpecificResult ofClass:NSString.class];
}
@end