fix: Issues related to the deletion of conversation_id (#12488) (#12665)

This commit is contained in:
jiandanfeng
2025-01-21 10:25:35 +08:00
committed by GitHub
parent 166221d784
commit 9aaee8ee47

View File

@@ -89,6 +89,7 @@ class MessageBasedAppGenerator(BaseAppGenerator):
Conversation.id == conversation_id,
Conversation.app_id == app_model.id,
Conversation.status == "normal",
Conversation.is_deleted.is_(False),
]
if isinstance(user, Account):