diff options
author | Tollef Fog Heen <tfheen@err.no> | 2015-08-01 19:55:52 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2015-08-01 19:56:47 +0200 |
commit | 35cb05a2fe0b0ed70e51ebb15e408a4fa9fd1d35 (patch) | |
tree | 4bba6ea124d52a75b0827b753bd94a7552fe7b34 /wee_slack.py | |
parent | 027a2218948558825e67c7efe50b1226107aafa8 (diff) | |
download | wee-slack-35cb05a2fe0b0ed70e51ebb15e408a4fa9fd1d35.tar.gz |
Avoid Here/Away nick lists in private chats
Override the update_nicklist implementation for private chats to just
pass, since we don't want nicklists there.
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wee_slack.py b/wee_slack.py index f368dff..969287e 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -689,6 +689,8 @@ class DmChannel(Channel): if self.channel_buffer: w.buffer_set(self.channel_buffer, "short_name", new_name) + def update_nicklist(self): + pass class User(object): |