Manos Chorianopoulos

fix consumerIntegration request

...@@ -1235,29 +1235,29 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION) ...@@ -1235,29 +1235,29 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
1235 { 1235 {
1236 NSMutableDictionary* data = [[NSMutableDictionary alloc] init]; 1236 NSMutableDictionary* data = [[NSMutableDictionary alloc] init];
1237 1237
1238 - if (nonTelco && ![nonTelco isEqual:@NO]) { 1238 + // if (nonTelco && ![nonTelco isEqual:@NO]) {
1239 [data setValue:nonTelco forKey:@"nonTelco"]; 1239 [data setValue:nonTelco forKey:@"nonTelco"];
1240 - } else { 1240 + // } else {
1241 - [data setValue:0 forKey:@"nonTelco"]; 1241 + // [data setValue:0 forKey:@"nonTelco"];
1242 - } 1242 + // }
1243 1243
1244 - if (acceptedConsent && ![acceptedConsent isEqual:@NO]) { 1244 + // if (acceptedConsent && ![acceptedConsent isEqual:@NO]) {
1245 [data setValue:acceptedConsent forKey:@"acceptedConsent"]; 1245 [data setValue:acceptedConsent forKey:@"acceptedConsent"];
1246 - } else { 1246 + // } else {
1247 - [data setValue:0 forKey:@"acceptedConsent"]; 1247 + // [data setValue:0 forKey:@"acceptedConsent"];
1248 - } 1248 + // }
1249 1249
1250 - if (msisdnList && (msisdnList != nil) && ([msisdnList count] != 0)) { 1250 + // if (msisdnList && (msisdnList != nil) && ([msisdnList count] != 0)) {
1251 [data setValue:msisdnList forKey:@"msisdnList"]; 1251 [data setValue:msisdnList forKey:@"msisdnList"];
1252 - } else { 1252 + // } else {
1253 - [data setValue:nil forKey:@"msisdnList"]; 1253 + // [data setValue:nil forKey:@"msisdnList"];
1254 - } 1254 + // }
1255 1255
1256 - if (guid && ![guid isEqual:@""]) { 1256 + // if (guid && ![guid isEqual:@""]) {
1257 [data setValue:guid forKey:@"guid"]; 1257 [data setValue:guid forKey:@"guid"];
1258 - } else { 1258 + // } else {
1259 - [data setValue:@"" forKey:@"guid"]; 1259 + // [data setValue:@"" forKey:@"guid"];
1260 - } 1260 + // }
1261 1261
1262 NSMutableDictionary* consumerData = [[NSMutableDictionary alloc] init]; 1262 NSMutableDictionary* consumerData = [[NSMutableDictionary alloc] init];
1263 [consumerData setValue:@"integration" forKey:@"action"]; 1263 [consumerData setValue:@"integration" forKey:@"action"];
......