Skip to content

Commit

Permalink
Fix: Failure to load on Safari (Mac) (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Nov 18, 2021
1 parent 673932e commit 733239b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/utils/status-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function convertArrayToObject(array: any[]): object {
}

export function extractUrl(value: string): string[] | null {
return value.toString().match(/\bhttps?:\/\/\S+(?<!\.)/gi);
return value.toString().match(/\bhttps?:\/\/\S+/gi);
}

export function matchIncludesLink(matches: RegExpMatchArray, part: string) {
Expand Down

0 comments on commit 733239b

Please sign in to comment.