Skip to content

Commit ffcca46

Browse files
authored
Fix Next.js header for Stripe webhook (vercel#242)
1 parent e7e0427 commit ffcca46

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/api/webhooks/route.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
upsertPriceRecord,
66
manageSubscriptionStatusChange
77
} from '@/utils/supabase-admin';
8-
import { headers } from 'next/headers';
98

109
const relevantEvents = new Set([
1110
'product.created',
@@ -20,7 +19,7 @@ const relevantEvents = new Set([
2019

2120
export async function POST(req: Request) {
2221
const body = await req.text();
23-
const sig = headers().get('Stripe-Signature') as string;
22+
const sig = req.headers.get('stripe-signature') as string;
2423
const webhookSecret = process.env.STRIPE_WEBHOOK_SECRET;
2524
let event: Stripe.Event;
2625

0 commit comments

Comments
 (0)