ENH: Download 3MF and Save in Chinese

JIRA: none
Change-Id: I0f6d1c74d609fbabc87ae086059aa8e49a596d02
This commit is contained in:
zorro.zhang 2024-03-20 19:30:22 +08:00 committed by Lane.Wei
parent 1ae9bd9d4a
commit 42f095fa49
1 changed files with 2 additions and 1 deletions

View File

@ -4121,7 +4121,8 @@ std::string GUI_App::handle_web_request(std::string cmd)
boost::optional<std::string> path = data_node.get_optional<std::string>("url");
if (path.has_value())
{
wxGetApp().request_model_download(path.value());
wxString realurl = from_u8(url_decode(path.value()));
wxGetApp().request_model_download(realurl);
}
}
}