Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
1350f032ca
fix(deps): update dependency io.sentry:sentry to v8.22.0 2025-09-22 14:10:06 +00:00
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ dependencies {
implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0")) implementation(platform("com.squareup.okhttp3:okhttp-bom:5.1.0"))
implementation 'com.squareup.okhttp3:okhttp' implementation 'com.squareup.okhttp3:okhttp'
implementation 'com.squareup.okhttp3:okhttp-brotli' implementation 'com.squareup.okhttp3:okhttp-brotli'
implementation 'io.sentry:sentry:8.23.0' implementation 'io.sentry:sentry:8.22.0'
implementation 'rocks.kavin:reqwest4j:1.0.14' implementation 'rocks.kavin:reqwest4j:1.0.14'
implementation 'io.minio:minio:8.5.17' implementation 'io.minio:minio:8.5.17'
compileOnly 'org.projectlombok:lombok:1.18.38' compileOnly 'org.projectlombok:lombok:1.18.38'

View File

@ -166,8 +166,8 @@ public class Constants {
S3_CLIENT = null; S3_CLIENT = null;
} }
System.getenv().forEach((key, value) -> { System.getenv().forEach((key, value) -> {
if (key.startsWith("HIBERNATE")) if (key.startsWith("hibernate"))
hibernateProperties.put(key.replace("__", ".").toLowerCase(), value); hibernateProperties.put(key, value);
}); });
MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org"); MATRIX_SERVER = getProperty(prop, "MATRIX_SERVER", "https://matrix-client.matrix.org");
MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN"); MATRIX_TOKEN = getProperty(prop, "MATRIX_TOKEN");