We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9131b5 commit 5bcf704Copy full SHA for 5bcf704
1 file changed
src/browser/history/rrweb.ts
@@ -13,7 +13,7 @@ export async function installRrwebAndCollectEvents(
13
callstack: Callstack,
14
): Promise<eventWithTime[]> {
15
/* eslint-disable @typescript-eslint/ban-ts-comment */
16
- return runWithoutHistory<Promise<eventWithTime[]>>({ callstack }, () =>
+ const resultPromise = runWithoutHistory<Promise<eventWithTime[]>>({ callstack }, () =>
17
session.execute(
18
(rrwebRecordFnCode, serverTime) => {
19
// @ts-expect-error
@@ -101,6 +101,9 @@ export async function installRrwebAndCollectEvents(
101
),
102
);
103
/* eslint-enable @typescript-eslint/ban-ts-comment */
104
+
105
+ callstack.setIsInBypassMode(false);
106
+ return resultPromise;
107
}
108
109
export function filterEvents(rrwebEvents: eventWithTime[]): eventWithTime[] {
0 commit comments