aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
authorRyan Huber <rhuber@gmail.com>2016-09-28 23:07:51 -0700
committerRyan Huber <rhuber@gmail.com>2016-09-28 23:07:51 -0700
commitf6f9422ff98668a182efdda931582a3c8dadb03e (patch)
treeac1743d95b7c040c4215b9655716c5fc95652720 /wee_slack.py
parentf4452d3d9fca69797aaf99614565b18540788ce0 (diff)
downloadwee-slack-f6f9422ff98668a182efdda931582a3c8dadb03e.tar.gz
consistently open mpdm the same way by handling the process_
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/wee_slack.py b/wee_slack.py
index 37d9248..94b4dc2 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -810,7 +810,7 @@ class GroupChannel(Channel):
class MpdmChannel(Channel):
def __init__(self, server, name, identifier, active, last_read=0, prepend_name="", members=[], topic=""):
- name = ",".join("-".join(name.split("-")[1:-1]).split("--"))
+ name = "|".join("-".join(name.split("-")[1:-1]).split("--"))
super(MpdmChannel, self).__init__(server, name, identifier, active, last_read, prepend_name, members, topic)
self.type = "group"
@@ -1241,7 +1241,6 @@ def save_distracting_channels():
w.config_set_plugin('distracting_channels', new)
-
@slack_buffer_required
def command_users(current_buffer, args):
"""
@@ -1619,7 +1618,10 @@ def process_group_joined(message_json):
server.channels.find(message_json["channel"]["name"]).open(False)
else:
item = message_json["channel"]
- server.add_channel(GroupChannel(server, item["name"], item["id"], item["is_open"], item["last_read"], "#", item["members"], item["topic"]["value"]))
+ if item["name"].startswith("mpdm-"):
+ server.add_channel(MpdmChannel(server, item["name"], item["id"], item["is_open"], item["last_read"], "#", item["members"], item["topic"]["value"]))
+ else:
+ server.add_channel(GroupChannel(server, item["name"], item["id"], item["is_open"], item["last_read"], "#", item["members"], item["topic"]["value"]))
def process_group_archive(message_json):