From a793bd9318e6803976efdd9dd2da4ebf18e26f74 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 21 Feb 2019 18:21:31 +0000 Subject: [PATCH] Fix --- commands/search/nasa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/nasa.js b/commands/search/nasa.js index 8385a714..a4a42ba1 100644 --- a/commands/search/nasa.js +++ b/commands/search/nasa.js @@ -50,6 +50,6 @@ module.exports = class NASACommand extends Command { return text .replace(/<\/?b>/g, '**') .replace(/<\/?i>/g, '*') - .replace(/)?([^<>]+)<\/a>/g, '[$2]($1)'); + .replace(/([^<>]+)<\/a>/g, '[$2]($1)'); } };