[fix] engines: tusksearch requires cors headers for botdetection (#6773)

Sec-Fetch-Mode and Sec-Fetch-Dest headers now mandatory
This commit is contained in:
Brock Vojkovic
2026-09-23 23:18:45 +08:00
committed by GitHub
parent 783a094625
commit 3cd69d30e2

View File

@@ -98,6 +98,8 @@ def request(query: str, params: "OnlineParams") -> None:
"Referer": "https://tusksearch.com/",
"Origin": "https://tusksearch.com",
"Sec-Fetch-Site": "same-site",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Dest": "empty",
}
)