Skip to content

Commit

Permalink
Fix compilation error (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-gov authored Sep 18, 2023
1 parent 4e9886a commit 5edba0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class MockServer {
if (data instanceof Envelope) {
data = data.toRecon();
}
this.socket!.send(data);
this.socket!.send(data as Buffer);
}

close(): void {
Expand Down

0 comments on commit 5edba0d

Please sign in to comment.