Skip to content

Commit 67563bb

Browse files
committed
fix incorrect sendEvent() call
calling `sendEvent()` instead of `_sendEvent()` in `BaseClient` does not leads to the super classe's `_sendEvent()` not being called.
1 parent 99bde12 commit 67563bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/core/src/baseclient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ export abstract class BaseClient<B extends Backend, O extends Options> implement
654654
this._updateSessionFromEvent(session, processedEvent);
655655
}
656656

657-
this.sendEvent(processedEvent);
657+
this._sendEvent(processedEvent);
658658
return processedEvent;
659659
})
660660
.then(null, reason => {

0 commit comments

Comments
 (0)