« get me outta code hell

fix not checking flash data errors - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2021-03-05 21:09:41 -0400
committer(quasar) nebula <towerofnix@gmail.com>2021-03-05 21:09:59 -0400
commit6919e7264d7db78f3580c56798ad377aada99422 (patch)
treea0e289832772a675536a902dd078cac5f0081ff1
parent10e9059c502db6586826f7c29c2d483b553d24c6 (diff)
fix not checking flash data errors
-rwxr-xr-xupd8.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js
index 21f1605..e9ebc66 100755
--- a/upd8.js
+++ b/upd8.js
@@ -5341,7 +5341,7 @@ async function main() {
             return;
         }
 
-        const errors = artistData.filter(obj => obj.error);
+        const errors = flashData.filter(obj => obj.error);
         if (errors.length) {
             for (const error of errors) {
                 console.log(`\x1b[31;1m${error.error}\x1b[0m`);