diff options
author | Kevin Pulo <kev@pulo.com.au> | 2021-06-24 04:57:02 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 20:57:02 +0200 |
commit | 64a43951685bca2c199efd2543770693f2bcfa78 (patch) | |
tree | 701c17418852f8aeeded8b839430d7690b63bb1a /wee_slack.py | |
parent | 7d254b6cb6389fb4e863be3c46370254811c0bec (diff) | |
download | wee-slack-64a43951685bca2c199efd2543770693f2bcfa78.tar.gz |
Don't unhide buffers when reprinting messages (#839)
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 ca1740d..9d2e170 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -2413,6 +2413,7 @@ class SlackChannel(SlackChannelCommon): config.unhide_buffers_with_activity and not self.is_visible() and not self.muted + and not no_log ): w.buffer_set(self.channel_buffer, "hidden", "0") |