Vasilis

fix at getCouponSets

......@@ -1548,7 +1548,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
- (void) getCouponSetsWithSuccessBlock:(NSNumber*) active andVisible:(NSNumber*) visible andUuids:(NSArray*) uuids :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure
{
NSDictionary *postDictionary = @{@"coupon": @{@"action": @"retrieve_multilingual", @"active": active, @"visible": visible, @"language": LANG, @"uuids": uuids}};
NSDictionary *postDictionary = @{@"coupon": @{@"action": @"retrieve_multilingual", @"language": LANG, @"active": active, @"visible": visible, @"language": LANG, @"uuids": uuids}};
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:postDictionary options:0 error:NULL];
[self sendContext:jsonData successBlock:^(NSDictionary *contextResponse) {
if (success) {
......