fixed bug that was showing all assigned site in the create new container panel

This commit is contained in:
Kendall Werts
2020-01-09 13:56:14 -06:00
parent 6184dbb656
commit 9de6df6157
3 changed files with 36 additions and 29 deletions
-10
View File
@@ -9,16 +9,6 @@ const assignManager = {
area: browser.storage.local,
exemptedTabs: {},
async getSynced() {
const beenSynced = await this.area.get("beenSynced");
if (Object.entries(beenSynced).length === 0) return false;
return true;
},
setSynced() {
this.area.set({beenSynced: true});
},
getSiteStoreKey(pageUrl) {
const url = new window.URL(pageUrl);
const storagePrefix = "siteContainerMap@@_";