Better error & retry tracking in Kitematic

Signed-off-by: Jeffrey Morgan <jmorganca@gmail.com>
This commit is contained in:
Jeffrey Morgan 2015-11-02 18:33:49 -08:00
parent 191045351b
commit 5426eeaafd
1 changed files with 3 additions and 1 deletions

View File

@ -34,7 +34,9 @@ var VirtualBox = {
reject('VBoxManage -v output format not recognized.'); reject('VBoxManage -v output format not recognized.');
} }
resolve(match[1]); resolve(match[1]);
}).catch(reject); }).catch(() => {
resolve(null);
});
}); });
}, },
poweroffall: function () { poweroffall: function () {