We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be15d42 commit ef7173aCopy full SHA for ef7173a
1 file changed
src/main/java/com/github/pfmiles/dropincc/impl/util/Util.java
@@ -283,7 +283,7 @@ private static String toFilePath(URL url) {
283
try {
284
File f = new File(url.toURI().getSchemeSpecificPart());
285
if (f.exists()) {
286
- return f.getAbsolutePath();
+ return f.toURI().getSchemeSpecificPart();
287
} else {
288
return null;
289
}
0 commit comments