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

This commit is contained in:
Sebastian Stenzel
2016-04-13 15:26:27 +02:00
parent e2bc71a0bc
commit de9af9e303
@@ -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();
}
});
}