summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-09-08 14:19:40 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-09-08 14:19:40 -0400
commit147d3c7c62df30fc0e2439cdf62437aed5e60632 (patch)
treea82f296f31b44d01cf118b57b4555cb34cf5a0ee
parentb9b8ce3d8e69180a38b5617ba61495a726e8047d (diff)
downloadsdl_ios-147d3c7c62df30fc0e2439cdf62437aed5e60632.tar.gz
Fix missed update to constantbugfix/issue_711_constant_styling
-rw-r--r--SmartDeviceLink/SDLProxy.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink/SDLProxy.m
index 34b06e366..16ed595a1 100644
--- a/SmartDeviceLink/SDLProxy.m
+++ b/SmartDeviceLink/SDLProxy.m
@@ -699,7 +699,7 @@ static float DefaultConnectionTimeout = 45.0;
NSDictionary<NSString *, id> *responseDictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&JSONConversionError];
if (!JSONConversionError) {
SDLEncodedSyncPData *request = [[SDLEncodedSyncPData alloc] init];
- request.correlationID = [NSNumber numberWithInt:POLICIES_CORRELATION_ID];
+ request.correlationID = [NSNumber numberWithInt:PoliciesCorrelationId];
request.data = [responseDictionary objectForKey:@"data"];
[self sendRPC:request];