Reduced debounce value for event notifications

pull/2407/head
JayZed 7 months ago committed by GitHub
parent 2eec9131f8
commit e3354aa7f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -27,7 +27,7 @@ class SocketIOClient {
this.socket.on("data", this.onEvent.bind(this));
this.events = [];
this.debounceReduce = debounce(this.reduce, 20);
this.debounceReduce = debounce(this.reduce, 3);
this.reducers = [];
onlineManager.setOnline(false);

Loading…
Cancel
Save