Skip to content
Snippets Groups Projects
Commit 782471b7 authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

fix matrix.to URLs

parent 0466454b
No related branches found
No related tags found
No related merge requests found
......@@ -375,7 +375,7 @@ class Mailer(object):
if self.app_name == "Vector":
return "https://vector.im/beta/#/room/%s" % (room_id,)
else:
return "https://matrix.to/#/room/%s" % (room_id,)
return "https://matrix.to/#/%s" % (room_id,)
def make_notif_link(self, notif):
# need /beta for Universal Links to work on iOS
......@@ -384,7 +384,7 @@ class Mailer(object):
notif['room_id'], notif['event_id']
)
else:
return "https://matrix.to/#/room/%s/%s" % (
return "https://matrix.to/#/%s/%s" % (
notif['room_id'], notif['event_id']
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment