Lower debounce value

Lower debounce value from 20 msec to 3 msec to improve performance of Sync status updates.
Any value lower than 3 msec didn't seem to make much of a difference in my testing.
This commit is contained in:
JayZed 2024-02-20 17:52:10 -05:00
parent 2eec9131f8
commit a156be13b8
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);