unread-counter-fix
All checks were successful
deploy / deploy (push) Successful in 1m14s

This commit is contained in:
2023-12-18 03:15:59 +03:00
parent 5c0621dc9b
commit 6023cfb4c2
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ class ChatPayload(TypedDict):
created_by: int
description: Optional[str]
messages: Optional[List[Message]]
unread: Optional[List[int]]
unread: Optional[int] # counter
class ChatUpdate(TypedDict):