From afa09cfc25a3546e2c6e70350008097e8ff4fa9c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 12 Nov 2024 22:48:27 +0100 Subject: [PATCH] lib/client: fix typo That one turned out to be surprisingly tricky to dig out. --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index d913086..9bc28bc 100644 --- a/lib/client.js +++ b/lib/client.js @@ -148,7 +148,7 @@ export default class Client extends EventTarget { constructor(params) { super(); - this.handleOneline = this.handleOnline.bind(this); + this.handleOnline = this.handleOnline.bind(this); this.params = { ...this.params, ...params };