Recognise *.element.io links as Element permalinks

This ensures all Elements detect permalinks to official deployments as Element
and handle them internally.

Fixes https://github.com/vector-im/element-web/issues/16005
pull/21833/head
J. Ryan Stinnett 2020-12-21 13:15:00 +00:00
parent 71cbc8bf29
commit 93e24fae7a
1 changed files with 2 additions and 1 deletions

View File

@ -188,7 +188,8 @@ const escapeRegExp = function(string) {
matrixLinkify.ELEMENT_URL_PATTERN =
"^(?:https?://)?(?:" +
escapeRegExp(window.location.host + window.location.pathname) + "|" +
"(?:www\\.)?(?:riot|vector)\\.im/(?:app|beta|staging|develop)/" +
"(?:www\\.)?(?:riot|vector)\\.im/(?:app|beta|staging|develop)/|" +
"(?:app|beta|staging|develop)\\.element\\.io/" +
")(#.*)";
matrixLinkify.MATRIXTO_URL_PATTERN = "^(?:https?://)?(?:www\\.)?matrix\\.to/#/(([#@!+]).*)";