chore: skip non-final message events in bot.py event loop

This commit is contained in:
retoor 2025-05-29 08:08:18 +00:00
parent a326406c90
commit 99492ec73b

View File

@ -136,6 +136,8 @@ class Bot:
if event == "?":
continue
elif event == "message":
if not data.is_final:
continue
break
try: