From 5025939e5d50c008edf3f99ef110cd4a5d22bb17 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 22 Apr 2024 09:28:39 -0700 Subject: [PATCH] chore: add img2dataset to edge func --- edge-functions/block-bots.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/edge-functions/block-bots.js b/edge-functions/block-bots.js index 867813e..5fc3c84 100644 --- a/edge-functions/block-bots.js +++ b/edge-functions/block-bots.js @@ -34,6 +34,7 @@ const botUas = [ 'Google-Extended', 'GoogleOther', 'GPTBot', + 'img2dataset', 'ImagesiftBot', 'magpie-crawler', 'Meltwater', @@ -60,4 +61,4 @@ export default async (request, context) => { const response = isBot ? new Response(null, { status: 401 }) : await context.next(); return response -}; \ No newline at end of file +};