Add shortname for twilio, telegram, messenger bridge
This commit is contained in:
parent
5062c4cbd6
commit
db8bc325b4
1 changed files with 7 additions and 3 deletions
|
@ -1017,9 +1017,13 @@ class RoomBuffer(object):
|
|||
if (user.user_id.startswith("@_discord_") or
|
||||
user.user_id.startswith("@_slack_") or
|
||||
user.user_id.startswith("@whatsapp_") or
|
||||
user.user_id.startswith("@facebook_") or
|
||||
user.user_id.startswith("@telegram_") or
|
||||
user.user_id.startswith("@_xmpp_")):
|
||||
if user.display_name:
|
||||
short_name = user.display_name[0:50]
|
||||
elif user.user_id.startswith("@twilio_"):
|
||||
short_name = shorten_sender(user.user_id[7:])
|
||||
elif user.user_id.startswith("@freenode_"):
|
||||
short_name = shorten_sender(user.user_id[9:])
|
||||
elif user.user_id.startswith("@_ircnet_"):
|
||||
|
|
Loading…
Reference in a new issue