fix(backend): unable to export conversation (#12577)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Hiep Le
2026-01-24 01:06:02 +07:00
committed by GitHub
parent 6c5ef256fd
commit 52e39e5d12
2 changed files with 45 additions and 1 deletions

View File

@@ -1295,7 +1295,7 @@ class LiveStatusAppConversationService(AppConversationServiceBase):
# Get all events for this conversation
i = 0
async for event in page_iterator(
self.event_service.search_events, conversation_id__eq=conversation_id
self.event_service.search_events, conversation_id=conversation_id
):
event_filename = f'event_{i:06d}_{event.id}.json'
event_path = os.path.join(temp_dir, event_filename)