Skip to content

Commit

Permalink
Fixes #118
Browse files Browse the repository at this point in the history
Escape the text input from bootbox prompt.

Related: [bootbox/issues/661](bootboxjs/bootbox#661)
  • Loading branch information
john-aws authored Mar 6, 2024
1 parent cb22126 commit f62f129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@
if (result !== null) {
resetDepth();
s3exp_config = {
Bucket: result,
Bucket: htmlEscape(result),
Delimiter: '/'
};
(s3exp_lister = s3list(s3exp_config, s3draw)).go();
Expand Down

0 comments on commit f62f129

Please sign in to comment.