Fixed dead CORS bypass

This commit is contained in:
Lucas Gabriel 2024-09-29 22:21:46 -03:00
parent 76683d8381
commit 56041a56c1
No known key found for this signature in database
GPG Key ID: D9B075FC6DC93985

View File

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