Skip to content

Commit

Permalink
fix(config): update the application name for config file
Browse files Browse the repository at this point in the history
  • Loading branch information
n3tw0rth committed Jan 27, 2025
1 parent d9f9183 commit a727125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tokio::io::{AsyncReadExt, AsyncWriteExt};
use super::Config;

pub async fn app_state() -> anyhow::Result<Config> {
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);
Expand Down

0 comments on commit a727125

Please sign in to comment.