Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

CMDQueryStringSerialization causing SimpleAuth to choke on iOS6 #52

Closed
kimballfrank opened this issue Mar 26, 2014 · 2 comments
Closed

Comments

@kimballfrank
Copy link

Lines 72-74 of CMDQueryStringSerialization.m:

- (NSString *)cmd_stringByRemovingEscapes {
    return [self stringByRemovingPercentEncoding];
}

[self stringByRemovingPercentEncoding] is iOS7 and above.
[self stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding] is the functional equivalent and is backward compatible with iOS6.

@calebd
Copy link
Owner

calebd commented Apr 5, 2014

Wow I did not know that. Will update. Thanks!

@calebd
Copy link
Owner

calebd commented Apr 25, 2014

Fixed in 521e3b7.

@calebd calebd closed this as completed Apr 25, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants