We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1203373 commit ed3d67bCopy full SHA for ed3d67b
jme3-plugins/src/gltf/java/com/jme3/scene/plugins/gltf/GltfLoader.java
@@ -1191,7 +1191,7 @@ public Node getRootNode() {
1191
1192
private String decodeUri(String uri) {
1193
try {
1194
- return URLDecoder.decode(uri.replace("+", "%2B"), "UTF-8");
+ return URLDecoder.decode(uri, "UTF-8");
1195
} catch (UnsupportedEncodingException e) {
1196
return uri; //This would mean that UTF-8 is unsupported on the platform.
1197
}
0 commit comments