Add files via upload

This commit is contained in:
公明
2026-07-06 11:31:13 +08:00
committed by GitHub
parent be2800c248
commit 7b8b57907b
7 changed files with 721 additions and 20 deletions
+9
View File
@@ -170,6 +170,9 @@ function showWechatBoundUI(wechat) {
if (btn) {
btn.textContent = wechatT('settings.robots.wechat.rebindButton', '重新绑定');
}
if (typeof refreshRobotManager === 'function') {
refreshRobotManager();
}
}
function escapeHtml(text) {
@@ -342,6 +345,9 @@ async function pollWechatBindStatus() {
bound: true
});
}
if (typeof refreshRobotManager === 'function') {
refreshRobotManager();
}
return;
case 'need_verifycode':
updateWechatSteps('scan');
@@ -405,5 +411,8 @@ function refreshWechatRobotBoundUI(wechat) {
if (btn) {
btn.textContent = wechatT('settings.robots.wechat.bindButton', '生成二维码并绑定');
}
if (typeof refreshRobotManager === 'function') {
refreshRobotManager();
}
}
}