summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs
index 0d84906..c355f2d 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -121,7 +121,7 @@ impl Config {
ref mut defaults,
..
} => {
- defaults.insert(key.parse()?, value.into());
+ defaults.insert(key.to_lowercase().parse()?, value.into());
}
ConfigKind::Frozen => {
@@ -140,7 +140,7 @@ impl Config {
ref mut overrides,
..
} => {
- overrides.insert(key.parse()?, value.into());
+ overrides.insert(key.to_lowercase().parse()?, value.into());
}
ConfigKind::Frozen => {