mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 13:03:59 -06:00
Also listen to the "/" appended string for url schemes
Windows adds a slash for some reason CURA-11288
This commit is contained in:
parent
568fc4ca76
commit
84d56367f4
1 changed files with 1 additions and 1 deletions
|
@ -1805,7 +1805,7 @@ class CuraApplication(QtApplication):
|
|||
return
|
||||
|
||||
match url.host() + url.path():
|
||||
case "open":
|
||||
case "open" | "open/":
|
||||
query = QUrlQuery(url.query())
|
||||
model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue