summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLStationIDNumber.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLStationIDNumber.m')
-rw-r--r--SmartDeviceLink/SDLStationIDNumber.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLStationIDNumber.m b/SmartDeviceLink/SDLStationIDNumber.m
index 6c4922c74..623cb0b09 100644
--- a/SmartDeviceLink/SDLStationIDNumber.m
+++ b/SmartDeviceLink/SDLStationIDNumber.m
@@ -26,7 +26,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (nullable NSNumber<SDLInt> *)countryCode {
- return [store sdl_objectForName:SDLRPCParameterNameCountryCode ofClass:NSNumber.class];
+ return [store sdl_objectForName:SDLRPCParameterNameCountryCode ofClass:NSNumber.class error:nil];
}
@@ -35,7 +35,7 @@ NS_ASSUME_NONNULL_BEGIN
}
- (nullable NSNumber<SDLInt> *)fccFacilityId {
- return [store sdl_objectForName:SDLRPCParameterNameFCCFacilityId ofClass:NSNumber.class];
+ return [store sdl_objectForName:SDLRPCParameterNameFCCFacilityId ofClass:NSNumber.class error:nil];
}
@end