mirror of
https://github.com/langgenius/dify.git
synced 2026-05-09 12:59:18 +08:00
[autofix.ci] apply automated fixes
This commit is contained in:
parent
b8067f9c9e
commit
7e6106dfb2
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user