fix DB_PATH variable propagation (#2797)

This commit is contained in:
Lukas Schulte Pelkum 2024-05-26 01:27:08 +02:00 committed by GitHub
parent 814380a7f4
commit f5be44f2fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -274,7 +274,7 @@ impl ServerConfig {
self.origin = Some(value.to_string());
}
"DB_PATH" => {
self.origin = Some(value.to_string());
self.db_path = Some(value.to_string());
}
"TLS_CHAIN" => {
self.tls_chain = Some(value.to_string());