File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/org/cryptomator/cli/frontend Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >org.cryptomator</groupId >
4
4
<artifactId >cli</artifactId >
5
- <version >0.5.0 </version >
5
+ <version >0.5.1 </version >
6
6
<name >Cryptomator CLI</name >
7
7
<description >Command line program to access encrypted files via WebDAV.</description >
8
8
<url >https://github.com/cryptomator/cli</url >
Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ public boolean mount() {
31
31
32
32
try {
33
33
Mounter mounter = FuseMountFactory .getMounter ();
34
- EnvironmentVariables envVars = EnvironmentVariables .create ().withFlags (mounter .defaultMountFlags ())
34
+ EnvironmentVariables envVars = EnvironmentVariables .create () //
35
+ .withFlags (mounter .defaultMountFlags ()) //
36
+ .withFileNameTranscoder (mounter .defaultFileNameTranscoder ()) //
35
37
.withMountPoint (mountPoint ).build ();
36
38
mnt = mounter .mount (vaultRoot , envVars );
37
39
LOG .info ("Mounted to {}" , mountPoint );
You can’t perform that action at this time.
0 commit comments