Fix sqlite db wrong path

This commit is contained in:
fromost
2025-10-09 16:56:50 +08:00
parent d660f25fb1
commit 2556781b45
3 changed files with 11 additions and 12 deletions

View File

@@ -9,4 +9,6 @@ lazy_static!(
.join(APP_DIR_NAME);
pub static ref APP_DATA_DIR: PathBuf = BASE_DIRS.data_dir().to_path_buf()
.join(APP_DIR_NAME);
pub static ref APP_CONIFG_FILE_PATH: PathBuf = APP_CONFIG_DIR.clone()
.join("config.ini");
);