Tobias Hagemann 4 년 전
부모
커밋
72f4988632
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      main/commons/src/main/java/org/cryptomator/common/settings/SettingsProvider.java

+ 1 - 1
main/commons/src/main/java/org/cryptomator/common/settings/SettingsProvider.java

@@ -91,7 +91,7 @@ public class SettingsProvider implements Supplier<Settings> {
 			}
 		} catch (NoSuchFileException e) {
 			return Stream.empty();
-		} catch (IOException e) {
+		} catch (IOException | JsonParseException e) {
 			LOG.warn("Exception while loading settings from " + path, e);
 			return Stream.empty();
 		}