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 7f07dc8 commit 0220ddeCopy full SHA for 0220dde
app/src/main/java/github/daneren2005/dsub/util/FileUtil.java
@@ -695,7 +695,9 @@ private static String fileSystemSafeDir(String path) {
695
}
696
697
// Airsonic 11 appears to be returning backslashes instead of always forcing path with forward slashes
698
- path = path.replace("\\", "/");
+ if(!path.contains("/")) {
699
+ path = path.replace("\\", "/");
700
+ }
701
for (String s : FILE_SYSTEM_UNSAFE_DIR) {
702
path = path.replace(s, "-");
703
0 commit comments