[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2025-12-29 08:31:06 +00:00 committed by GitHub
parent b8067f9c9e
commit 7e6106dfb2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class MessageAppLogServiceBase(ABC):
conversation_ids = {msg.conversation_id for msg in messages if msg.conversation_id}
conversations = {}
if conversation_ids:
conversation_results = session.query(Conversation).filter(Conversation.id.in_(conversation_ids)).all()
conversation_results = session.query(Conversation).where(Conversation.id.in_(conversation_ids)).all()
conversations = {conv.id: conv for conv in conversation_results}
for message in messages: