summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/utils/utils.jsx')
-rw-r--r--web/react/utils/utils.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 36fb200e6..e6c460959 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -231,9 +231,9 @@ module.exports.extractLinks = function(text) {
var repRegex = new RegExp("<br>", "g");
var matches = testUrlMatch(text.replace(repRegex, "\n"));
- if (!matches) return { "links": null, "text": text };
+ if (!matches.length) return { "links": null, "text": text };
- var links = []
+ var links = [];
for (var i = 0; i < matches.length; i++) {
links.push(matches[i].link);
}