fix: make support replies finish promptly

This commit is contained in:
3252a8
2026-05-27 22:21:24 +03:00
parent bce78c4f28
commit ded044b4c0
4 changed files with 55 additions and 26 deletions
@@ -93,7 +93,8 @@
});
async function send(body) {
await supportStore.sendReply(body);
const sent = await supportStore.sendReply(body);
if (!sent) return;
reply = "";
}