deletes containers, and adds and deletes site assignments.

This commit is contained in:
Kendall Werts
2019-12-20 22:01:59 -06:00
parent 063b7509bd
commit 0e45f06338
2 changed files with 20 additions and 23 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ const identityState = {
if (configKey.includes("identitiesState@@_")) {
const cookieStoreId = String(configKey).replace(/^identitiesState@@_/, "");
const match = identitiesList.find(localIdentity => localIdentity.cookieStoreId === cookieStoreId);
if (!match) {
if (!match && cookieStoreId !== "firefox-default") {
console.log("removed ", cookieStoreId, " from storage list");
this.remove(cookieStoreId);
}