From 128c82d2177322168a6d8b21d84d9269308a6723 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 11 Mar 2021 19:15:52 -0500 Subject: [PATCH] Fix --- commands/search/google.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/google.js b/commands/search/google.js index 40ee6977..2c178eae 100644 --- a/commands/search/google.js +++ b/commands/search/google.js @@ -65,7 +65,7 @@ module.exports = class GoogleCommand extends Command { const href = $(h3).parent().attr('href'); if (href) { const params = new URLSearchParams(href); - links.push(params.url); + links.push(params.get('url')); } } });