Skip to content
Snippets Groups Projects
Commit d24071a5 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Display archive extraction error to user and abort search (upon error)

parent 2166b9c1
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -197,6 +197,8 @@ while(bbs.online && !console.aborted) { ...@@ -197,6 +197,8 @@ while(bbs.online && !console.aborted) {
count = new Archive(path).extract(system.temp_dir); count = new Archive(path).extract(system.temp_dir);
} catch(e) { } catch(e) {
log(LOG_INFO, e); log(LOG_INFO, e);
alert(e);
break;
} }
base.close(); base.close();
if(count) { if(count) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment