$sengine was not actually used

Had declared search engine in variable, but the variable wasn't actually used.
This commit is contained in:
k 2021-09-03 15:48:02 +03:00 committed by GitHub
parent 41c22ed218
commit 190954b550
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}