mirror of
https://github.com/godotengine/godot.git
synced 2026-02-23 20:30:13 +00:00
Add macOS shell_open URL escaping
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user