Merge pull request #13453 from bruvzg/3.0-uri_escaping
Add macOS shell_open URL escaping
This commit is contained in:
commit
14d1d69916
1 changed files with 1 additions and 1 deletions
|
@ -1483,7 +1483,7 @@ void OS_OSX::make_rendering_thread() {
|
|||
|
||||
Error OS_OSX::shell_open(String p_uri) {
|
||||
|
||||
[[NSWorkspace sharedWorkspace] openURL:[[NSURL alloc] initWithString:[NSString stringWithUTF8String:p_uri.utf8().get_data()]]];
|
||||
[[NSWorkspace sharedWorkspace] openURL:[[NSURL alloc] initWithString:[[NSString stringWithUTF8String:p_uri.utf8().get_data()] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLFragmentAllowedCharacterSet]]]];
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue