diff --git a/crates/core/config/src/lib.rs b/crates/core/config/src/lib.rs index 30622370..af375b6f 100644 --- a/crates/core/config/src/lib.rs +++ b/crates/core/config/src/lib.rs @@ -13,8 +13,8 @@ static CONFIG_BUILDER: Lazy> = Lazy::new(|| { FileFormat::Toml, )); - if std::path::Path::new("revolt.toml").exists() { - builder = builder.add_source(File::new("revolt.toml", FileFormat::Toml)); + if std::path::Path::new("Revolt.toml").exists() { + builder = builder.add_source(File::new("Revolt.toml", FileFormat::Toml)); } builder.build().unwrap()