Fix for issue where wrong method was called (#9532)

This commit is contained in:
Tim O'Farrell 2025-07-03 11:46:48 -06:00 committed by GitHub
parent 2990c21d97
commit 55a09785ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -158,7 +158,7 @@ async def add_event(
request: Request, conversation: ServerConversation = Depends(get_conversation)
):
data = request.json()
await conversation_manager.send_to_event_stream(conversation.sid, data)
await conversation_manager.send_event_to_conversation(conversation.sid, data)
return JSONResponse({'success': True})