Reduced debounce value for event notifications

This commit is contained in:
JayZed 2024-02-20 20:12:45 -05:00 committed by GitHub
parent 2eec9131f8
commit e3354aa7f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);