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 22 <modelVersion >4.0.0</modelVersion >
33 <groupId >org.cryptomator</groupId >
44 <artifactId >cli</artifactId >
5- <version >0.5.0 </version >
5+ <version >0.5.1 </version >
66 <name >Cryptomator CLI</name >
77 <description >Command line program to access encrypted files via WebDAV.</description >
88 <url >https://github.com/cryptomator/cli</url >
Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ public boolean mount() {
3131
3232 try {
3333 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 ()) //
3537 .withMountPoint (mountPoint ).build ();
3638 mnt = mounter .mount (vaultRoot , envVars );
3739 LOG .info ("Mounted to {}" , mountPoint );
You can’t perform that action at this time.
0 commit comments