aboutsummaryrefslogtreecommitdiffstats
path: root/slack
diff options
context:
space:
mode:
Diffstat (limited to 'slack')
-rw-r--r--slack/slack_conversation.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/slack/slack_conversation.py b/slack/slack_conversation.py
index fe8cd79..d3f7763 100644
--- a/slack/slack_conversation.py
+++ b/slack/slack_conversation.py
@@ -183,16 +183,18 @@ class SlackConversation(SlackBuffer):
self,
name_type: Literal["full_name", "short_name", "short_name_without_padding"],
) -> str:
- if self._info["is_im"] is True:
+ if self.type == "im":
if name_type == "short_name":
return " "
else:
return ""
- elif self._info["is_mpim"]:
+ elif self.type == "mpim":
if name_type == "short_name" or name_type == "short_name_without_padding":
return "@"
else:
return ""
+ elif self.type == "private":
+ return "&"
else:
return "#"