-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
OAuthIORequest.m lines 68 and 126 bug
[url appendFormat:@"?%@%@", [self buildQueryWithDictionnary:_data.request_query], [self buildQueryWithDictionnary:params]];
@"?%@%@" needs an & between the arguments
@"?%@&%@"
Here is the corrected line:
[url appendFormat:@"?%@&%@", [self buildQueryWithDictionnary:_data.request_query], [self buildQueryWithDictionnary:params]];
Metadata
Metadata
Assignees
Labels
No labels