From a727125e999453fdd8d7b3de8e518f2a23cb7441 Mon Sep 17 00:00:00 2001 From: n3tw0rth Date: Mon, 27 Jan 2025 20:38:49 +0530 Subject: [PATCH] fix(config): update the application name for config file --- src/helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.rs b/src/helpers.rs index ebd580e..b75ae94 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -4,7 +4,7 @@ use tokio::io::{AsyncReadExt, AsyncWriteExt}; use super::Config; pub async fn app_state() -> anyhow::Result { - let config_path = dirs::config_dir().unwrap().join("fetched"); + let config_path = dirs::config_dir().unwrap().join("completion-notifier"); let filename = "config.toml"; let path = config_path.join(filename);