Release v1.5.96

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-04 04:17:22 +01:00
co-authored by Claude Opus 4.6
parent 00fae5cadd
commit 27833615b7
3 changed files with 18 additions and 9 deletions
+5 -5
View File
@@ -662,14 +662,14 @@ export function App(): ReactElement {
const itemCount = Object.keys(state.session.items).length;
let flushDelay = itemCount >= 1500
? 1200
? 900
: itemCount >= 700
? 920
? 650
: itemCount >= 250
? 640
: 300;
? 400
: 150;
if (!state.session.running) {
flushDelay = Math.min(flushDelay, 320);
flushDelay = Math.min(flushDelay, 200);
}
if (activeTabRef.current !== "downloads") {
flushDelay = Math.max(flushDelay, 800);