mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 10:55:06 -05:00
lib/client: bind handleOnline to this
It's used as a callback to removeEventListener().
This commit is contained in:
parent
4bce52f162
commit
977752e0f2
1 changed files with 2 additions and 0 deletions
|
@ -148,6 +148,8 @@ export default class Client extends EventTarget {
|
||||||
constructor(params) {
|
constructor(params) {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
this.handleOneline = this.handleOnline.bind(this);
|
||||||
|
|
||||||
this.params = { ...this.params, ...params };
|
this.params = { ...this.params, ...params };
|
||||||
|
|
||||||
this.reconnect();
|
this.reconnect();
|
||||||
|
|
Loading…
Reference in a new issue