From ac2b624eb2c3db0b57dfdc49cd9f344293f65b1b Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Sat, 4 May 2024 10:41:39 +0800 Subject: [PATCH] Externally notify that an error has occured during analysis --- scripts/external/processor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/external/processor.js b/scripts/external/processor.js index c3cc807..23a61f7 100644 --- a/scripts/external/processor.js +++ b/scripts/external/processor.js @@ -23,6 +23,7 @@ export default class processor { await this.product.analyze(); } catch(err) { logging.error(err.name, err.message, err.stack, false); + this.notify({"error": true}); }; // Indicate that the process is done.