Skip to content

Commit

Permalink
Merge pull request guicocoa#1 from nrj/patch-1
Browse files Browse the repository at this point in the history
URL path should not be lowercased.
  • Loading branch information
calebd committed Nov 3, 2011
2 parents 506891a + 207f941 commit a777311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GCOAuth.m
Expand Up @@ -172,7 +172,7 @@ - (NSString *)signatureBase {
NSString *URLString = [NSString stringWithFormat:@"%@://%@%@",
[[URL scheme] lowercaseString],
[[URL host] lowercaseString],
[[URL path] lowercaseString]];
[URL path]];

// create components
NSArray *components = [NSArray arrayWithObjects:
Expand Down

0 comments on commit a777311

Please sign in to comment.