mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Don’t rescan files
This commit is contained in:
parent
ff81eb963a
commit
fef66dfd3c
1 changed files with 4 additions and 0 deletions
|
|
@ -293,6 +293,10 @@ export default class AppFilesScanner {
|
|||
// Scan for archives
|
||||
await Promise.all( this.files.map( async (file, scanIndex) => {
|
||||
|
||||
// If we've already scanned this
|
||||
// then skip
|
||||
if ( file.status === 'finished' ) return
|
||||
|
||||
if ( !this.isApp( file ) ) {
|
||||
file.statusMessage = '⏭ Skipped. Not app or archive'
|
||||
file.status = 'finished'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue