From 5426eeaafd167a86f2ff0455da3df63c719007de Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Mon, 2 Nov 2015 18:33:49 -0800 Subject: [PATCH] Better error & retry tracking in Kitematic Signed-off-by: Jeffrey Morgan --- src/utils/VirtualBoxUtil.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils/VirtualBoxUtil.js b/src/utils/VirtualBoxUtil.js index 28ba6a5f4d..4906344eac 100644 --- a/src/utils/VirtualBoxUtil.js +++ b/src/utils/VirtualBoxUtil.js @@ -34,7 +34,9 @@ var VirtualBox = { reject('VBoxManage -v output format not recognized.'); } resolve(match[1]); - }).catch(reject); + }).catch(() => { + resolve(null); + }); }); }, poweroffall: function () {