Browse Source

Also listen to the "/" appended string for url schemes

Windows adds a slash for some reason

CURA-11288
c.lamboo 1 year ago
parent
commit
84d56367f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/CuraApplication.py

+ 1 - 1
cura/CuraApplication.py

@@ -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))