We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab37a98 commit 346cb7eCopy full SHA for 346cb7e
1 file changed
cloudflare-workers/gumroad-products/worker.js
@@ -26,10 +26,10 @@ export default {
26
27
// Fetch the Gumroad page
28
const upstreamResp = await fetch(gumroadUrl);
29
- return new Response("done", { status: 200 });
30
31
// Get raw HTML
32
const html = await upstreamResp.text();
+ return new Response(`done ${upstreamResp.status}`, { status: 200 });
33
34
// Build response with CORS headers
35
const responseHeaders = new Headers(upstreamResp.headers);
0 commit comments