Linkify messages with unicode drawing characters
This commit is contained in:
parent
7b11804cda
commit
0459ab02d3
2 changed files with 19 additions and 9 deletions
|
@ -90,9 +90,6 @@ export function shouldLinkifyMessage(
|
|||
if (DIRECTIONAL_OVERRIDES.test(message)) {
|
||||
return false;
|
||||
}
|
||||
if (UNICODE_DRAWING.test(message)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -187,6 +184,10 @@ export function isLinkSneaky(href: string): boolean {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (UNICODE_DRAWING.test(href)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const url = maybeParseUrl(href);
|
||||
|
||||
// If we can't parse it, it's sneaky.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue