mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-08-18 05:06:02 +00:00
Continue mounting also if command fails with error code. Issue #267
This commit is contained in:
+1
-1
@@ -133,7 +133,7 @@ final class WindowsWebDavMounter implements WebDavMounterStrategy {
|
||||
String addStdErr = IOUtils.toString(addCmd.getErrorStream(), StandardCharsets.UTF_8);
|
||||
throw new CommandFailedException(addStdErr);
|
||||
}
|
||||
} catch (IOException e) {
|
||||
} catch (IOException | CommandFailedException e) {
|
||||
LOG.info("Failed to add proxy overrides", e);
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
|
||||
Reference in New Issue
Block a user