diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2020-06-24 17:07:31 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2020-06-24 17:07:31 +0200 |
commit | ae1c5705403e497a80c90309a2c7f02d177557ea (patch) | |
tree | 226762c3db497f6ed6d2a92fb76d6e7b37c8f56b /wee_slack.py | |
parent | a9b29de170080d0971543b6afa42bbb08c3bf971 (diff) | |
download | wee-slack-ae1c5705403e497a80c90309a2c7f02d177557ea.tar.gz |
Fix buffers not changing color in buflist when (un)muted
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wee_slack.py b/wee_slack.py index 45804c7..c27b20b 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -1397,6 +1397,7 @@ class SlackTeam(object): self.muted_channels = {x for x in muted_str.split(',') if x} for channel in self.channels.values(): channel.set_highlights() + channel.rename() def set_highlight_words(self, highlight_str): self.highlight_words = {x for x in highlight_str.split(',') if x} |