about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-23 14:44:19 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-23 14:44:19 +0200
commitc467d7a4457363b0da4a41aa4869ab368ff452e3 (patch)
treebf18bd4683539a994585ed361f7473c942e60e42
parentchore(version): v1.1.0 (diff)
downloadyt-c467d7a4457363b0da4a41aa4869ab368ff452e3.tar.gz
yt-c467d7a4457363b0da4a41aa4869ab368ff452e3.zip
fix(config/from_filesystem): Just load an empty config, if there isn't one
-rw-r--r--src/config/file_system.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/file_system.rs b/src/config/file_system.rs
index b89c1fe..396b854 100644
--- a/src/config/file_system.rs
+++ b/src/config/file_system.rs
@@ -83,7 +83,7 @@ impl Config {
             .map(|val| Ok(val))
             .unwrap_or_else(|| -> Result<_> { paths::config_path() })?;
 
-        let config: Table = read_to_string(config_file_path)?
+        let config: Table = read_to_string(config_file_path).unwrap_or("".to_owned())
             .parse()
             .context("Failed to parse the config file as toml")?;