From 1de7e0f5930c0fbe68d50f49ecc149f4a26d9c61 Mon Sep 17 00:00:00 2001 From: baku Date: Wed, 1 Feb 2017 08:14:58 +0100 Subject: [PATCH] Fix hideTabs - issue #132 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 634405a..1f9af82 100644 --- a/index.js +++ b/index.js @@ -236,7 +236,7 @@ const ContainerService = { this._remapTabsIfMissing(args.userContextId); // We should check if this userContextId exists. - if ((args.userContextId in this._identitiesState)) { + if (!(args.userContextId in this._identitiesState)) { resolve(null); return; }