Skip to content

Commit a6858e6

Browse files
committed
fix destroy
1 parent 637f194 commit a6858e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/replay/src/eventBuffer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ export class EventBufferProxy implements EventBuffer {
5959

6060
/** @inheritDoc */
6161
public destroy(): void {
62-
return this._fallback.destroy();
63-
return this._compression.destroy();
62+
this._fallback.destroy();
63+
this._compression.destroy();
6464
}
6565

6666
/**

0 commit comments

Comments
 (0)