diff options
author | jason <jason@zzq.org> | 2017-11-08 13:55:04 -0700 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2017-11-08 22:13:38 +0100 |
commit | 49211f9741a31a44a1bceff0c57ae0286f7a5aa7 (patch) | |
tree | 1f3785e5fd262de259eb9df5552229b0c57f7dc2 | |
parent | 2410a868401f42e9e6f8a8f436e609fd6e226c01 (diff) | |
download | wee-slack-49211f9741a31a44a1bceff0c57ae0286f7a5aa7.tar.gz |
Display nicklist in MPDM messages
- Fix a regression from 95fa08 that disabled the nicklist in multi-person direct
messages
-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 e1f721a..274e05e 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -1515,7 +1515,7 @@ class SlackChannel(object): def update_nicklist(self, user=None): if not self.channel_buffer: return - if self.type not in ["channel", "group"]: + if self.type not in ["channel", "group", "mpim"]: return w.buffer_set(self.channel_buffer, "nicklist", "1") # create nicklists for the current channel if they don't exist |