Fix for HTTP server tabs not automatically closing

This commit is contained in:
Thomas Buckley-Houston 2018-06-18 19:38:24 +08:00
parent 4b18c55d5c
commit cddd3ca173

View file

@ -55,7 +55,7 @@ export default (MixinBase) => class extends MixinBase {
_tabCount(callback) {
this._getAllTabs((windowInfoArray) => {
callback(windowInfoArray.length);
callback(windowInfoArray[0].tabs.length);
});
}