diff options
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index a38943e..bc075d7 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -3807,7 +3807,7 @@ def handle_conversationsinfo(channel_json, eventrouter, team, channel, metadata) channel.set_members(channel_info["members"]) # MPIMs don't have unread_count_display so we have to request the history to check if there are unread messages - if channel.type == "mpim" and not channel.channel_buffer: + if channel.type == "mpim" and not channel.got_history: s = SlackRequest( team, "conversations.history", |