mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
fix(set-listeners) can not continue first error operation error
This commit is contained in:
parent
a8e679bf03
commit
a493e5a4d1
1 changed files with 2 additions and 2 deletions
|
|
@ -73,8 +73,8 @@ module.exports = (options) => (emitter) => {
|
|||
|
||||
const [cancel] = await Dialog.confirm(error + '\n Continue?');
|
||||
|
||||
if (!cancel)
|
||||
emitter.continue();
|
||||
if (!done && !cancel)
|
||||
return emitter.continue();
|
||||
|
||||
emitter.abort();
|
||||
progress.remove();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue