Removing at regex test preventing some urls from rendering as links.

This commit is contained in:
Warrick Corfe-Tan 2021-10-04 11:02:58 +11:00
parent af12e2c288
commit 5eba4a616e

View file

@ -17,7 +17,6 @@ interface Props {
}
const SUPPORTED_PROTOCOLS = /^(http|https):/i;
const HAS_AT = /@/;
export class Linkify extends React.Component<Props> {
public static defaultProps: Partial<Props> = {
@ -49,7 +48,8 @@ export class Linkify extends React.Component<Props> {
}
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(
<a key={count++} href={url} onClick={this.handleClick}>
{originalText}