summaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
authorJayZed <[email protected]>2024-02-20 20:12:45 -0500
committerGitHub <[email protected]>2024-02-20 20:12:45 -0500
commite3354aa7f3419448328558e1844a461318734ff2 (patch)
tree84a0ccf004bc7fd53404083bfb18e2d42c885528 /frontend
parent2eec9131f85eba7976539ca7a48f43afdf3512ae (diff)
downloadbazarr-e3354aa7f3419448328558e1844a461318734ff2.tar.gz
bazarr-e3354aa7f3419448328558e1844a461318734ff2.zip
Reduced debounce value for event notifications
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/modules/socketio/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/modules/socketio/index.ts b/frontend/src/modules/socketio/index.ts
index bf8df7ea8..64a8d6511 100644
--- a/frontend/src/modules/socketio/index.ts
+++ b/frontend/src/modules/socketio/index.ts
@@ -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);