main #1

Merged
devbeni merged 15 commits from main into legacy 2025-10-16 13:08:12 +02:00
14 changed files with 90 additions and 24 deletions
Showing only changes of commit 966450a2de - Show all commits

View File

@@ -154,7 +154,7 @@ export default function Home() {
};
const queue = [...chunks];
const active = [];
const active: Promise<void>[] = [];
while (queue.length > 0 || active.length > 0) {
while (active.length < PARALLEL_UPLOADS && queue.length > 0) {
const task = queue.shift()!;