From c883fe85d6c650f5ef07032302b293676a38d9a7 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 20 Aug 2022 22:38:15 -0500 Subject: [PATCH] Message extraction start --- helpers/scanner/scan.mjs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/helpers/scanner/scan.mjs b/helpers/scanner/scan.mjs index 4a4e7cd..863fd0a 100644 --- a/helpers/scanner/scan.mjs +++ b/helpers/scanner/scan.mjs @@ -392,9 +392,14 @@ export class AppScan { status: 'loading' }) - this.file = await this.fileLoader() - // console.log( 'File:', this.file ) + this.file = await this.loadFile() + + this.sendMessage({ + message: '📚 Extracting from archive...', + status: 'scanning', + data: this.file + }) this.bundleFileEntries = await this.readFileBlob( this.file )