aboutsummaryrefslogtreecommitdiffstats
path: root/slack/slack_user.py
diff options
context:
space:
mode:
Diffstat (limited to 'slack/slack_user.py')
-rw-r--r--slack/slack_user.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/slack/slack_user.py b/slack/slack_user.py
index 3eb00aa..b73d5d5 100644
--- a/slack/slack_user.py
+++ b/slack/slack_user.py
@@ -135,6 +135,10 @@ class SlackUser:
self._rendered_message = None
self._parsed_message = None
+ for conversation in self.workspace.open_conversations.values():
+ if conversation.im_user_id == self.id:
+ conversation.update_buffer_props()
+
class SlackBot:
def __init__(self, workspace: SlackWorkspace, info: SlackBotInfo):