*Fix write module call name

This commit is contained in:
Derrick Hammer 2023-02-06 03:33:44 -05:00
parent d4df7d45c3
commit e211fa3b48
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ export class Socket extends Client {
}
write(message: string | Buffer): void {
this.callModule("write", { id: this.id, message });
this.callModule("socketWrite", { id: this.id, message });
}
end(): void {