Explorar el Código

fixed funny detail label in vault list, if vault is not located inside home directory

Sebastian Stenzel hace 9 años
padre
commit
de9af9e303
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      main/ui/src/main/java/org/cryptomator/ui/model/Vault.java

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/model/Vault.java

@@ -214,7 +214,7 @@ public class Vault implements CryptoFileSystemDelegate {
 				String homePrefix = SystemUtils.IS_OS_WINDOWS ? "~\\" : "~/";
 				return homePrefix + relativePath.toString();
 			} else {
-				return path.toString();
+				return path.getValue().toString();
 			}
 		});
 	}