Showing
2 changed files
with
1 additions
and
1 deletions
... | @@ -1548,7 +1548,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION) | ... | @@ -1548,7 +1548,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION) |
1548 | 1548 | ||
1549 | - (void) getCouponSetsWithSuccessBlock:(NSNumber*) active andVisible:(NSNumber*) visible andUuids:(NSArray*) uuids :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure | 1549 | - (void) getCouponSetsWithSuccessBlock:(NSNumber*) active andVisible:(NSNumber*) visible andUuids:(NSArray*) uuids :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure |
1550 | { | 1550 | { |
1551 | - NSDictionary *postDictionary = @{@"coupon": @{@"action": @"retrieve_multilingual", @"active": active, @"visible": visible, @"language": LANG, @"uuids": uuids}}; | 1551 | + NSDictionary *postDictionary = @{@"coupon": @{@"action": @"retrieve_multilingual", @"language": LANG, @"active": active, @"visible": visible, @"language": LANG, @"uuids": uuids}}; |
1552 | NSData *jsonData = [NSJSONSerialization dataWithJSONObject:postDictionary options:0 error:NULL]; | 1552 | NSData *jsonData = [NSJSONSerialization dataWithJSONObject:postDictionary options:0 error:NULL]; |
1553 | [self sendContext:jsonData successBlock:^(NSDictionary *contextResponse) { | 1553 | [self sendContext:jsonData successBlock:^(NSDictionary *contextResponse) { |
1554 | if (success) { | 1554 | if (success) { | ... | ... |
-
Please register or login to post a comment