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.
2 parents 9628774 + 946b376 commit c5921f6Copy full SHA for c5921f6
src/main/java/me/kavin/piped/consts/Constants.java
@@ -166,8 +166,8 @@ public class Constants {
166
S3_CLIENT = null;
167
}
168
System.getenv().forEach((key, value) -> {
169
- if (key.startsWith("hibernate"))
170
- hibernateProperties.put(key, value);
+ if (key.startsWith("HIBERNATE"))
+ hibernateProperties.put(key.replace("__", ".").toLowerCase(), value);
171
});
172
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
173
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");
0 commit comments