diff --git a/functions/api/uploads/[[id]].ts b/functions/api/uploads/[[id]].ts index 41a2209..d3e2fdf 100644 --- a/functions/api/uploads/[[id]].ts +++ b/functions/api/uploads/[[id]].ts @@ -23,13 +23,3 @@ export async function onRequestGet(context: RequestContext) { .replaceAll("=", "")}` ); } - -export async function onRequestHead(context: RequestContext) { - const attachment = context.params.id as string; - - return new Response(null, { - status: (await context.env.DATA.get(`videoprocessing_${attachment}`)) - ? 409 - : 204, - }); -}