a little linting, but not all the linting

This commit is contained in:
Kendall Werts
2019-12-16 14:59:11 -06:00
parent efb83255fd
commit d98d0f1697
2 changed files with 5 additions and 7 deletions
-2
View File
@@ -77,12 +77,10 @@ const identityState = {
},
async lookupCookieStoreId(macUUID) {
console.log("luCSI");
const macConfigs = await this.storageArea.area.get();
for(const key of Object.keys(macConfigs)) {
if (key.includes("identitiesState@@_")) {
if(macConfigs[key].macUUID === macUUID) {
console.log(key);
return key.replace(/^firefox-container-@@_/, "");
}
}