Skip to content

Commit

Permalink
use path of the url (excluding query parameters) as none of the wire …
Browse files Browse the repository at this point in the history
…protocol uses query params.

fixes issue where new session from grid passes in ?null
  • Loading branch information
lukeis committed Mar 5, 2013
1 parent 4d12181 commit db26457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iphone/src/objc/RESTServiceMapping.m
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ + (void)propertiesOfHTTPMessage:(HTTPMessage*)request
// Extract requested URI
if (query != nil) {
*uri = [request url];
*query = [*uri relativeString];
*query = [*uri path];
}

// Extract POST data
Expand Down

0 comments on commit db26457

Please sign in to comment.