1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Fix linkifying rooms with underscores, try 2

Fixes https://github.com/vector-im/vector-web/issues/500
This commit is contained in:
David Baker
2016-09-21 14:11:43 +01:00
parent b83d1db24a
commit 59117f1905
2 changed files with 4 additions and 2 deletions

View File

@@ -42,7 +42,9 @@ function matrixLinkify(linkify) {
TT.PLUS,
TT.NUM,
TT.DOMAIN,
TT.TLD
TT.TLD,
TT.UNDERSCORE,
TT.POUND,
];
S_START.on(TT.POUND, S_HASH);