Skip to content

Commit ed3d67b

Browse files
tlf30stephengold
authored andcommitted
Remove + escapeing
1 parent 1203373 commit ed3d67b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jme3-plugins/src/gltf/java/com/jme3/scene/plugins/gltf/GltfLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ public Node getRootNode() {
11911191

11921192
private String decodeUri(String uri) {
11931193
try {
1194-
return URLDecoder.decode(uri.replace("+", "%2B"), "UTF-8");
1194+
return URLDecoder.decode(uri, "UTF-8");
11951195
} catch (UnsupportedEncodingException e) {
11961196
return uri; //This would mean that UTF-8 is unsupported on the platform.
11971197
}

0 commit comments

Comments
 (0)