refactor(chat_manager.py): prevent notification when message is a FileResponse instance
This commit is contained in:
parent
4dcfd9d1db
commit
9f8b474a36
1 changed files with 2 additions and 1 deletions
|
|
@ -23,7 +23,8 @@ class ChatHistory(Subject):
|
|||
"""Add a message to the chat history."""
|
||||
|
||||
self.history[client_id].append(message)
|
||||
self.notify()
|
||||
if not isinstance(message, FileResponse):
|
||||
self.notify()
|
||||
|
||||
def get_history(self, client_id: str, filter=True) -> List[ChatMessage]:
|
||||
"""Get the chat history for a client."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue