From 87b41fbdcc757d280f9c9a6a045f3038eabaed5c Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Sun, 10 Apr 2022 04:56:37 -0400 Subject: [PATCH] Make another missing inbound property optional --- matrix_appservice_kakaotalk/kt/types/channel/channel_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_appservice_kakaotalk/kt/types/channel/channel_info.py b/matrix_appservice_kakaotalk/kt/types/channel/channel_info.py index a72f0d6..a44a2ab 100644 --- a/matrix_appservice_kakaotalk/kt/types/channel/channel_info.py +++ b/matrix_appservice_kakaotalk/kt/types/channel/channel_info.py @@ -45,7 +45,7 @@ class ChannelInfo(Channel): type: ChannelType activeUserCount: int newChatCount: int - newChatCountInvalid: bool + newChatCountInvalid: Optional[bool] = None # NOTE Made optional lastChatLogId: Long lastSeenLogId: Long lastChatLog: Optional[Chatlog] = None