File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -164,14 +164,14 @@ async def get_conversation_detail(
164164 """Get conversation detail (Admin only)"""
165165 try :
166166 conv_manager = ConversationManager (db )
167- conversation = conv_manager .get_conversation_by_thread_id (thread_id )
167+ conversation = await conv_manager .get_conversation_by_thread_id (thread_id )
168168
169169 if not conversation :
170170 raise HTTPException (status_code = 404 , detail = "Conversation not found" )
171171
172172 # Get messages and stats
173- messages = conv_manager .get_messages (conversation .id )
174- stats = conv_manager .get_stats (conversation .id )
173+ messages = await conv_manager .get_messages (conversation .id )
174+ stats = await conv_manager .get_stats (conversation .id )
175175
176176 # Format messages
177177 message_list = []
You can’t perform that action at this time.
0 commit comments