We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36bbd0 commit 946b376Copy full SHA for 946b376
src/main/java/me/kavin/piped/consts/Constants.java
@@ -167,8 +167,7 @@ public class Constants {
167
}
168
System.getenv().forEach((key, value) -> {
169
if (key.startsWith("HIBERNATE"))
170
- String k = key.replace("_", ".").toLowerCase();
171
- hibernateProperties.put(k, value);
+ hibernateProperties.put(key.replace("__", ".").toLowerCase(), value);
172
});
173
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
174
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
0 commit comments