src/com/gitblit/StoredSettings.java
@@ -114,11 +114,11 @@ } private static synchronized Properties read() { File file = new File("gitblit.properties"); File file = new File(Constants.PROPERTIES_FILE); if (file.exists() && (file.lastModified() > lastread)) { try { properties = new Properties(); properties.load(new FileInputStream("gitblit.properties")); properties.load(new FileInputStream(Constants.PROPERTIES_FILE)); lastread = file.lastModified(); } catch (FileNotFoundException f) { } catch (Throwable t) {