Skip to content

Commit

Permalink
fix event length in webhooks payload (calcom#14039)
Browse files Browse the repository at this point in the history
Co-authored-by: CarinaWolli <[email protected]>
Co-authored-by: Alex van Andel <[email protected]>
  • Loading branch information
3 people authored Mar 12, 2024
1 parent b06e463 commit d6d2aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/features/bookings/lib/handleNewBooking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,7 @@ async function handler(
eventDescription: eventType.description,
price: paymentAppData.price,
currency: eventType.currency,
length: eventType.length,
length: reqEventLength,
};

const teamId = await getTeamIdFromEventType({ eventType });
Expand Down

0 comments on commit d6d2aae

Please sign in to comment.