From 4a8bf6aebd2557b8029dea98ef43c3c2d32381d1 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 25 Sep 2021 19:26:48 +0200 Subject: [PATCH] ff-crash: the queue can die before the rest of the browser --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e601f3c..c43bbedc 100644 --- a/README.md +++ b/README.md @@ -868,7 +868,7 @@ however you can hit `F12` in the up2k tab and use the devtools to see how far yo `var tabs = { ok:[], ng:[], bz:[], q:[] }; for (var a of up2k.ui.tab) tabs[a.in].push(a); tabs` * list of filenames which failed: - `​var ng = []; for (var a of up2k.ui.tab) if (a.in == 'ng') ng.push(a.hn.split('')[0]); ng` + `​var ng = []; for (var a of up2k.ui.tab) if (a.in != 'ok') ng.push(a.hn.split('')[0]); ng` * send the list of filenames to copyparty for safekeeping: `await fetch('/inc', {method:'PUT', body:JSON.stringify(ng,null,1)})`