Vasilis

fix for typo

......@@ -603,7 +603,7 @@ WL_VERSION_IMPLEMENTATION(WL_VERSION)
NSDictionary *postDictionary2 = [NSDictionary alloc];
if ([loginType isEqual:@"email"]) {
postDictionary2 = @{@"app_id": [contextResponse objectForKey:@"app_id"], @"client_id": clientId, @"confirm": @"yes", @"email":id, @"response_type":@"code", @"scope": [loginType stringByAppendingString:@" app_id"] };
} else if ([loginType isEqual:@"msdisdn"]) {
} else if ([loginType isEqual:@"msisdn"]) {
postDictionary2 = @{@"app_id": [contextResponse objectForKey:@"app_id"], @"client_id": clientId, @"confirm": @"yes", @"msisdn":id, @"response_type":@"code", @"scope": [loginType stringByAppendingString:@" app_id"] };
} else {
postDictionary2 = @{@"app_id": [contextResponse objectForKey:@"app_id"], @"client_id": clientId, @"confirm": @"yes", @"username":id, @"response_type":@"code", @"scope": [loginType stringByAppendingString:@" app_id"] };
......