You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
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
This commit is contained in:
@@ -188,7 +188,8 @@ const escapeRegExp = function(string) {
|
|||||||
matrixLinkify.ELEMENT_URL_PATTERN =
|
matrixLinkify.ELEMENT_URL_PATTERN =
|
||||||
"^(?:https?://)?(?:" +
|
"^(?:https?://)?(?:" +
|
||||||
escapeRegExp(window.location.host + window.location.pathname) + "|" +
|
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/#/(([#@!+]).*)";
|
matrixLinkify.MATRIXTO_URL_PATTERN = "^(?:https?://)?(?:www\\.)?matrix\\.to/#/(([#@!+]).*)";
|
||||||
|
|||||||
Reference in New Issue
Block a user