Skip to content

Commit

Permalink
Merge pull request #390 from ParsePlatform/nlutsenko.ios7
Browse files Browse the repository at this point in the history
Fix URL construction on iOS 7.
  • Loading branch information
nlutsenko committed Oct 9, 2015
2 parents f705703 + edde3bf commit 4586e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Parse/Internal/HTTPRequest/PFURLConstructor.m
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ + (NSURL *)URLFromAbsoluteString:(NSString *)string
path:(nullable NSString *)path
query:(nullable NSString *)query {
NSURLComponents *components = [NSURLComponents componentsWithString:string];
if (components.path) {
if (path) {
components.path = path;
}
if (query) {
Expand Down

0 comments on commit 4586e85

Please sign in to comment.