From 12bb87931e45372a05a2889ab381bda2c72c2fb9 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 9 Nov 2016 12:48:52 +0200 Subject: [PATCH] chore(operation) setListeners: else --- lib/client/operation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/operation.js b/lib/client/operation.js index 5b908aee..a329e530 100644 --- a/lib/client/operation.js +++ b/lib/client/operation.js @@ -176,14 +176,14 @@ if (options.noContinue) { listeners.end(error); Dialog.alert(TITLE, error) - } - else + } else { Dialog.confirm(TITLE, error + '\n Continue?') .then(function() { emitter.continue(); }, function() { emitter.abort(); }); + } } };