diff --git a/client/js/libs/handlebars/ircmessageparser/findLinks.js b/client/js/libs/handlebars/ircmessageparser/findLinks.js index 564722e7f3..e14b4baf6b 100644 --- a/client/js/libs/handlebars/ircmessageparser/findLinks.js +++ b/client/js/libs/handlebars/ircmessageparser/findLinks.js @@ -23,8 +23,15 @@ function findLinks(text) { // See https://medialize.github.io/URI.js/docs.html#static-withinString // In our case, we store each URI encountered in a result array. URI.withinString(text, function(url, start, end) { - // Extract the scheme of the URL detected, if there is one - const parsedScheme = URI(url).scheme().toLowerCase(); + let parsedScheme; + + try { + // Extract the scheme of the URL detected, if there is one + parsedScheme = URI(url).scheme().toLowerCase(); + } + catch (e) { + return; + } // Check if the scheme of the detected URL matches a common one above. // In a URL like `foo..http://example.com`, the scheme would be `foo..http`,