Skip to content

Fixed build warnings #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions FsprgEmbeddedStore/FsprgStoreParameters.m
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ - (NSURLRequest *)toURLRequest

- (NSURL *)toURL
{
NSString *storeIdEncoded = [[self storeId] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *storeIdEncoded = [[self storeId] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
if(storeIdEncoded == nil) {
storeIdEncoded = @"";
}
NSString *productIdEncoded = [[self productId] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *productIdEncoded = [[self productId] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]];
if(productIdEncoded == nil) {
productIdEncoded = @"";
}
Expand Down Expand Up @@ -154,7 +154,7 @@ - (NSURL *)toURL
if(value != nil) {
queryStr = [queryStr stringByAppendingFormat:@"&%@=%@",
key,
[value stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[value stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]];
}
}

Expand Down