This commit is contained in:
Tobias Hagemann
2021-01-05 14:14:14 +01:00
parent b3fa6bbf32
commit 72f4988632

View File

@@ -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();
}