fix: cache/log directory was mistakenly changed from uad -> uad-ng

This commit is contained in:
Adhiraj Singh Chauhan 2024-01-04 07:39:12 +05:30
commit a283202c9c
No known key found for this signature in database
GPG key ID: D889CEA057BF085C

View file

@ -61,7 +61,7 @@ pub fn string_to_theme(theme: &str) -> Theme {
}
pub fn setup_uad_dir(dir: Option<PathBuf>) -> PathBuf {
let dir = dir.unwrap().join("uad-ng");
let dir = dir.unwrap().join("uad");
fs::create_dir_all(&dir).expect("Can't create cache directory");
dir
}