Skip to content

Commit e95fd3d

Browse files
committed
fix: remove unnecessary platform check for stopping typing
1 parent db3659e commit e95fd3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • astrbot/core/pipeline/process_stage/method/agent_sub_stages

astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ async def process(
382382
)
383383
await event.send(MessageChain().message(error_text))
384384
finally:
385-
if typing_requested and not event.platform_meta.support_streaming_message:
385+
if typing_requested:
386386
try:
387387
await event.stop_typing()
388388
except Exception:

0 commit comments

Comments
 (0)