From eb6471d42c9c0fc6b171b7611530df85e9aa6338 Mon Sep 17 00:00:00 2001 From: PeanutSplash Date: Tue, 3 Mar 2026 22:23:41 +0800 Subject: [PATCH] fix: Updated prompt messages for detecting multiple data directories and added instructions for users to select their current WeChat account. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 444eb53..1871fc5 100644 --- a/config.py +++ b/config.py @@ -61,7 +61,7 @@ def auto_detect_db_dir(): # 非交互环境(MCP、无 stdin 管道等)直接取第一个 if not sys.stdin.isatty(): return candidates[0] - print("[!] 检测到多个微信数据目录:") + print("[!] 检测到多个微信数据目录(请选择当前正在运行的微信账号):") for i, c in enumerate(candidates, 1): print(f" {i}. {c}") print(" 0. 跳过,稍后手动配置")