1
0
Fork 0
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:
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

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