diff options
author | JayZed <[email protected]> | 2024-02-20 20:12:45 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-20 20:12:45 -0500 |
commit | e3354aa7f3419448328558e1844a461318734ff2 (patch) | |
tree | 84a0ccf004bc7fd53404083bfb18e2d42c885528 /frontend | |
parent | 2eec9131f85eba7976539ca7a48f43afdf3512ae (diff) | |
download | bazarr-e3354aa7f3419448328558e1844a461318734ff2.tar.gz bazarr-e3354aa7f3419448328558e1844a461318734ff2.zip |
Reduced debounce value for event notifications
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/src/modules/socketio/index.ts | 2 |
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); |