fix unclosed '(' in settings.rs
Some checks failed
Build and publish the docker image / build (push) Failing after 12s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-01-20 06:04:17 +03:00
parent e35f0fa00b
commit 0cc19bf98d
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D

View File

@ -43,7 +43,7 @@ impl Settings {
if let Ok(path) = env::var("LIBMEDIUM") {
s = s.add_source(File::with_name(&path));
} else if Path::new("./config.toml").exists() {
s = s.add_source(File::with_name("./config.toml");
s = s.add_source(File::with_name("./config.toml"));
} else {
log::warn!("configuration file not found");
}