From f98120092180d58f41026f47cd1fb449c7def12b Mon Sep 17 00:00:00 2001 From: Kendall Werts Date: Thu, 23 Jan 2020 10:23:07 -0600 Subject: [PATCH] Update src/js/background/identityState.js Co-Authored-By: Jonathan Kingston --- src/js/background/identityState.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/background/identityState.js b/src/js/background/identityState.js index f985e17..673c0a2 100644 --- a/src/js/background/identityState.js +++ b/src/js/background/identityState.js @@ -127,7 +127,7 @@ const identityState = { cookieStoreId : "firefox-container-" + cookieStoreId; const macConfigs = await this.storageArea.area.get(); for(const configKey of Object.keys(macConfigs)) { - if (configKey === "identitiesState@@_" + cookieStoreIdKey) { + if (configKey === this.getContainerStoreKey(cookieStoreIdKey)) { return macConfigs[configKey].macAddonUUID; } }