From 20b0fffd7465b2e70d32b267032d114b45076d50 Mon Sep 17 00:00:00 2001 From: the-can-of-soup <91906096+the-can-of-soup@users.noreply.github.com> Date: Sat, 7 Mar 2026 04:29:20 -0500 Subject: [PATCH] Fix name of stack trace in log capture --- src/lib/pm-log-capture.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/pm-log-capture.js b/src/lib/pm-log-capture.js index 45a4104e2cd..368168ac82b 100644 --- a/src/lib/pm-log-capture.js +++ b/src/lib/pm-log-capture.js @@ -199,6 +199,7 @@ window.addEventListener('unhandledrejection', e => push('promiseError', String(e class StackTrace extends Error { constructor() { super(''); + this.name = 'StackTrace'; if (this.stack.split('\n', 2)[0].includes('@')) { this.stack = this.stack .split('\n')