From 5eba4a616ee6f0f61658276a506df3db835b8adb Mon Sep 17 00:00:00 2001 From: Warrick Corfe-Tan Date: Mon, 4 Oct 2021 11:02:58 +1100 Subject: [PATCH] Removing at regex test preventing some urls from rendering as links. --- ts/components/conversation/Linkify.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/components/conversation/Linkify.tsx b/ts/components/conversation/Linkify.tsx index bd65e7c69..9e17463bd 100644 --- a/ts/components/conversation/Linkify.tsx +++ b/ts/components/conversation/Linkify.tsx @@ -17,7 +17,6 @@ interface Props { } const SUPPORTED_PROTOCOLS = /^(http|https):/i; -const HAS_AT = /@/; export class Linkify extends React.Component { public static defaultProps: Partial = { @@ -49,7 +48,8 @@ export class Linkify extends React.Component { } const { url, text: originalText } = match; - if (SUPPORTED_PROTOCOLS.test(url) && !isLinkSneaky(url) && !HAS_AT.test(url)) { + const isLink = SUPPORTED_PROTOCOLS.test(url) && !isLinkSneaky(url); + if (isLink) { results.push( {originalText}