From 18a56ea4465554833cf2e48506b26d5e5a0a2d83 Mon Sep 17 00:00:00 2001 From: linuztx Date: Thu, 26 Mar 2026 13:44:17 +0800 Subject: [PATCH] fix: remove duplicate typing indicator before sending reply --- plugins/_whatsapp_integration/helpers/handler.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/_whatsapp_integration/helpers/handler.py b/plugins/_whatsapp_integration/helpers/handler.py index ce45508eb..8a92f85a4 100644 --- a/plugins/_whatsapp_integration/helpers/handler.py +++ b/plugins/_whatsapp_integration/helpers/handler.py @@ -237,9 +237,6 @@ async def send_wa_reply( if not reply_to and context.data.get(CTX_WA_IS_GROUP): reply_to = context.data.get(CTX_WA_LAST_MSG_ID, "") - # Typing indicator - await wa_client.send_typing(base_url, chat_id) - # Send text try: result = await wa_client.send_message(base_url, chat_id, response_text, reply_to=reply_to)