package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
570 B
14 lines
570 B
4 years ago
|
diff --git a/dom/src/dae/daeURI.cpp b/dom/src/dae/daeURI.cpp
|
||
|
index 3a8f815..1623753 100644
|
||
|
--- a/dom/src/dae/daeURI.cpp
|
||
|
+++ b/dom/src/dae/daeURI.cpp
|
||
|
@@ -790,7 +790,7 @@
|
||
|
scheme = fromRange(uri.scheme);
|
||
|
authority = fromRange(uri.hostText);
|
||
|
path = fromList(uri.pathHead, "/");
|
||
|
- if (uri.absolutePath != URI_TRUE and uri.hostText.first == NULL)
|
||
|
+ if (uri.absolutePath != URI_TRUE && uri.hostText.first == NULL)
|
||
|
path = path.erase(0, 1);
|
||
|
query = fromRange(uri.query);
|
||
|
fragment = fromRange(uri.fragment);
|