escape url string

This commit is contained in:
rehez 2015-12-17 16:20:33 +01:00
parent b7cbc49c01
commit 9eb797296c

View file

@ -121,7 +121,8 @@ void OpenItem(const base::FilePath& full_path) {
bool OpenExternal(const GURL& url) {
DCHECK([NSThread isMainThread]);
NSString* url_string = base::SysUTF8ToNSString(url.spec());
NSURL* ns_url = [NSURL URLWithString:url_string];
NSString* url_escaped_string = [url_string stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL* ns_url = [NSURL URLWithString:url_escaped_string];
if (!ns_url) {
return false;
}