From d082022007f1d7715b5d18a28c1a6904b054c696 Mon Sep 17 00:00:00 2001 From: Danny Spina Date: Mon, 19 Jun 2023 12:49:33 +0200 Subject: [PATCH] Try without https --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index a690039..5e54ea7 100644 --- a/index.ts +++ b/index.ts @@ -14,7 +14,7 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); app.get("/", (req, res) => { - const searchEngine = "https://html.duckduckgo.com/html/"; + const searchEngine = "http://html.duckduckgo.com/html/"; let query = req.query.q as string; if (!query) {