*Change socket close module method name to be consistent with the rest

This commit is contained in:
Derrick Hammer 2023-02-06 03:49:48 -05:00
parent e84b009244
commit 1f76aef53a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ export class Socket extends Client {
this.callModule("socketExists", { id: this.id }).then(
([exists]: ErrTuple) => {
if (exists) {
this.callModule("close", { id: this.id });
this.callModule("socketClose", { id: this.id });
}
}
);