From b3ae3adbb77c4111366cb59b80d757f361c70237 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 27 Sep 2025 11:20:43 +0300 Subject: Partially implement config includes Subsequent commits will add merging for all leftover sections. --- src/utils/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/mod.rs') diff --git a/src/utils/mod.rs b/src/utils/mod.rs index a96c1bfc..8efa8654 100644 --- a/src/utils/mod.rs +++ b/src/utils/mod.rs @@ -213,7 +213,7 @@ pub fn expand_home(path: &Path) -> anyhow::Result> { } pub fn make_screenshot_path(config: &Config) -> anyhow::Result> { - let Some(path) = &config.screenshot_path else { + let Some(path) = &config.screenshot_path.0 else { return Ok(None); }; -- cgit