mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-12 07:03:12 +00:00
Reduced debounce value for event notifications
This commit is contained in:
parent
2eec9131f8
commit
e3354aa7f3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue