Skip to content

Commit

Permalink
fix: Issues related to the deletion of conversation_id (#12488) (#12665)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiandanfeng authored Jan 21, 2025
1 parent 166221d commit 9aaee8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/core/app/apps/message_based_app_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def _get_conversation_by_user(
Conversation.id == conversation_id,
Conversation.app_id == app_model.id,
Conversation.status == "normal",
Conversation.is_deleted.is_(False),
]

if isinstance(user, Account):
Expand Down

0 comments on commit 9aaee8e

Please sign in to comment.