From 9cd5947401f93c8cfb9cde58d13eb2ebb9a4a95e Mon Sep 17 00:00:00 2001 From: xuncha <1658671838@qq.com> Date: Thu, 14 May 2026 22:46:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=BC=BA=E4=B8=80=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- electron/services/dualReportService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/services/dualReportService.ts b/electron/services/dualReportService.ts index c1fe75a..1d8de7b 100644 --- a/electron/services/dualReportService.ts +++ b/electron/services/dualReportService.ts @@ -114,6 +114,7 @@ class DualReportService { if (!accountDir) return { success: false, error: '无法找到账号目录' } const ok = await wcdbService.open(accountDir, decryptKey) if (!ok) return { success: false, error: 'WCDB 打开失败' } + const cleanedWxid = this.cleanAccountDirName(wxid) return { success: true, cleanedWxid, rawWxid: wxid } }