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 dbe603a commit c39890aCopy full SHA for c39890a
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