mirror of https://github.com/vector-im/riot-web
Merge pull request #4280 from matrix-org/dbkr/fix_permalink_crash
Fix soft-crash on bad permalinkspull/21833/head
commit
5986bbc561
|
@ -200,6 +200,7 @@ matrixLinkify.options = {
|
|||
switch (type) {
|
||||
case "url": {
|
||||
// intercept local permalinks to users and show them like userids (in userinfo of current room)
|
||||
try {
|
||||
const permalink = parsePermalink(href);
|
||||
if (permalink && permalink.userId) {
|
||||
return {
|
||||
|
@ -208,6 +209,9 @@ matrixLinkify.options = {
|
|||
},
|
||||
};
|
||||
}
|
||||
} catch (e) {
|
||||
// OK fine, it's not actually a permalink
|
||||
}
|
||||
break;
|
||||
}
|
||||
case "userid":
|
||||
|
|
Loading…
Reference in New Issue