fix: read secrets from legacy data dir

This commit is contained in:
2026-07-28 04:12:26 +09:00
parent 5d1950647e
commit 6114cc9018
4 changed files with 71 additions and 6 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ impl WebTools {
.user_agent("yoi-web-tools/0.1")
.build()
.expect("static reqwest client configuration is valid");
let secret_store = manifest::paths::data_dir().map(SecretStore::new);
let secret_store = manifest::paths::secret_data_dir().map(SecretStore::new);
Self {
config,
client,