Skip to content

Commit

Permalink
fix(replay): wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Feb 4, 2025
1 parent fcf3ffe commit b3dd08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/app/api/monitoring/envelope/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export async function POST(request: NextRequest) {

// Reconstruct envelope with proper format:
// header + \n\n + item1 + \n\n + item2 + \n\n
const envelope = headerRaw + "\n\n" + items.join("\n");
const envelope = headerRaw + "\n\n" + items.join("\n\n");

// Log detailed envelope structure
console.log("Envelope structure:", {
Expand Down

0 comments on commit b3dd08e

Please sign in to comment.