From b0b0dce808517fb7a65c78de2bd4da0a757acaaa Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Tue, 2 Jul 2024 12:30:52 -0700 Subject: [PATCH] Don't exclude the missing bulletin files from the list (change in last commit) ... since that messes up the bulletin->file numbering which is often hard-coded in bullseye.asc --- exec/bullseye.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/bullseye.js b/exec/bullseye.js index 31ab17bfe7..681a40a907 100644 --- a/exec/bullseye.js +++ b/exec/bullseye.js @@ -37,7 +37,7 @@ file.readln(); // First line is not used (mode?) bull = file.readAll(); file.close(); -bull = bull.filter(function(str) { return truncsp(str) && file_getcase(str); }); +bull = bull.filter(function(str) { return truncsp(str) }); if(bull.length < 1) { alert("No bulletins listed in " + file.name); -- GitLab