diff options
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 |
commit | 6919e7264d7db78f3580c56798ad377aada99422 (patch) | |
tree | a0e289832772a675536a902dd078cac5f0081ff1 /upd8.js | |
parent | 10e9059c502db6586826f7c29c2d483b553d24c6 (diff) |
fix not checking flash data errors
Diffstat (limited to 'upd8.js')
-rwxr-xr-x | upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upd8.js b/upd8.js index 21f16052..e9ebc66d 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`); |