Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
84259b35
Commit
84259b35
authored
Jan 01, 2022
by
Rob Swindell
💬
Browse files
Log exception details if 'list' command fails
parent
d24071a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
exec/archive.js
exec/archive.js
+2
-1
No files found.
exec/archive.js
View file @
84259b35
...
...
@@ -56,7 +56,8 @@ function list(filename, verbose)
try
{
list
=
Archive
(
filename
).
list
(
Boolean
(
verbose
));
}
catch
(
e
)
{
alert
(
file_getname
(
filename
)
+
"
: Unsupported archive format
"
);
log
(
LOG_NOTICE
,
filename
+
"
"
+
e
);
alert
(
file_getname
(
filename
)
+
"
: Unsupported archive
"
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment