diff --git a/platform/javascript/export/export.cpp b/platform/javascript/export/export.cpp index 5704433650..ec610a70fd 100644 --- a/platform/javascript/export/export.cpp +++ b/platform/javascript/export/export.cpp @@ -360,7 +360,7 @@ Error EditorExportPlatformJavaScript::run(const Ref &p_prese if (err) { return err; } - OS::get_singleton()->shell_open(path); + OS::get_singleton()->shell_open(String("file://") + path); return OK; }