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.
2 parents 77dc7dd + c39890a commit 8d26367Copy full SHA for 8d26367
rdf-file-core/src/main/java/com/alipay/rdf/file/loader/ResourceLoader.java
@@ -52,7 +52,7 @@ public static RdfInputStream getInputStream(String path) {
52
53
idx = path.indexOf(RdfFileUtil.QUESTION);
54
if (idx > -1) {
55
- path = path.substring(idx + 1);
+ path = path.substring(0, idx);
56
}
57
58
String cacheKey = resourceType + (resourceValue == null ? RdfFileUtil.EMPTY : resourceValue);
0 commit comments