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 b8f66d7 + 85f5d89 commit 533d5e8Copy full SHA for 533d5e8
BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resourcepack/fileaccess/FolderFileAccess.java
@@ -113,6 +113,7 @@ private synchronized void tidy() {
113
}
114
115
private Path resolve(String path) {
116
+ if (path.isEmpty() || "/".equals(path)) return folder.toPath();
117
if (File.separatorChar != '/') path = path.replace('/', File.separatorChar);
118
if (path.charAt(0) == '/') path = path.substring(1);
119
Path resolve = folder.toPath();
0 commit comments