From 190954b55012a5a933a8c0a8d869d34406db385d Mon Sep 17 00:00:00 2001 From: k Date: Fri, 3 Sep 2021 15:48:02 +0300 Subject: [PATCH] $sengine was not actually used Had declared search engine in variable, but the variable wasn't actually used. --- assets/js/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/search.js b/assets/js/search.js index 3217735..12736b2 100755 --- a/assets/js/search.js +++ b/assets/js/search.js @@ -120,7 +120,7 @@ function search(text) { else window.location = "https://" + text; } else { - window.location = "https://www.google.com/search?q=" + text; + window.location = sengine + text; } }