Skip to content

Commit

Permalink
Issue #152: Make sure that spaces are not double percent encoded when…
Browse files Browse the repository at this point in the history
… copying from the URL Parameters table to the URL
  • Loading branch information
mmattozzi committed Feb 16, 2019
1 parent a23b73f commit 5b0cb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/MainWindowController.m
Expand Up @@ -488,7 +488,7 @@ - (void) updateUrlFromParamsTable {

urlComponents.queryItems = queryItems;

[self.urlBox setStringValue:[[urlComponents URL] absoluteString]];
[self.urlBox setStringValue:[[[urlComponents URL] absoluteString] stringByRemovingPercentEncoding]];
}

- (BOOL) updateParamsTableFromUrl {
Expand Down

0 comments on commit 5b0cb37

Please sign in to comment.