mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Match Facebook user agents as bots
This commit is contained in:
parent
a4d5dda635
commit
d7fd20c933
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ const statusRequest = async (request: any, event: FetchEvent) => {
|
|||
const url = new URL(request.url);
|
||||
const userAgent = request.headers.get('User-Agent');
|
||||
|
||||
if (userAgent.match(/bot/gi) !== null) {
|
||||
if (userAgent.match(/bot|facebook/gi) !== null) {
|
||||
// https://developers.cloudflare.com/workers/examples/cache-api/
|
||||
const cacheUrl = new URL(request.url);
|
||||
const cacheKey = new Request(cacheUrl.toString(), request);
|
||||
|
|
Loading…
Add table
Reference in a new issue