From 56041a56c181d2628d671ffb2b52caded2c97ead Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Date: Sun, 29 Sep 2024 22:21:46 -0300 Subject: [PATCH] Fixed dead CORS bypass --- commands/gsmarena.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/gsmarena.js b/commands/gsmarena.js index e1c48ab..e2628a0 100644 --- a/commands/gsmarena.js +++ b/commands/gsmarena.js @@ -124,7 +124,7 @@ function formatPhone(phone) { async function fetchHtml(url) { try { - const response = await axios.get(`https://cors-bypass.amano.workers.dev/${url}`, { headers: HEADERS }); + const response = await axios.get(url, { headers: HEADERS }); return response.data; } catch (error) { console.error("Error fetching HTML:", error);