From 562daf990f59230fa6369c1f32e66c46b4d929d8 Mon Sep 17 00:00:00 2001 From: infeo Date: Tue, 6 Mar 2018 12:32:23 +0100 Subject: [PATCH] reactivating reveal method --- .../main/java/org/cryptomator/ui/model/FuseVolume.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/main/ui/src/main/java/org/cryptomator/ui/model/FuseVolume.java b/main/ui/src/main/java/org/cryptomator/ui/model/FuseVolume.java index 7751dadd0..ca5a561f9 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/model/FuseVolume.java +++ b/main/ui/src/main/java/org/cryptomator/ui/model/FuseVolume.java @@ -74,7 +74,11 @@ public class FuseVolume implements Volume { @Override public void reveal() throws CommandFailedException { - //fuseMnt.reveal(); + try { + fuseMnt.reveal(); + } catch (org.cryptomator.frontend.fuse.mount.CommandFailedException e) { + LOG.info("Revealing the vault in file manger failed: "+e.getMessage()); + } } @Override @@ -114,7 +118,7 @@ public class FuseVolume implements Volume { } /** - * TODO: chang this to a real implementation + * TODO: change this to a real implementation * * @return */