diff --git a/src-tauri/src/config.rs b/src-tauri/src/config.rs index 928e3a7f..b09b42e9 100644 --- a/src-tauri/src/config.rs +++ b/src-tauri/src/config.rs @@ -146,7 +146,7 @@ impl Config { match serde_json::from_str::(config_str) { Ok(config) => { - let config = config.merge(Self::default()); + let config = Self::default().merge(config); Ok(config) }, Err(e) => { @@ -174,7 +174,7 @@ impl Config { pub fn from_str(contents: impl AsRef) -> Result> { match serde_json::from_str::(contents.as_ref()) { Ok(config) => { - let config = config.merge(Self::default()); + let config = Self::default().merge(config); Ok(config) }, Err(e) => {