Update assignManager.js
This commit is contained in:
parent
3d4619575d
commit
9319205971
1 changed files with 2 additions and 1 deletions
|
@ -753,7 +753,8 @@ window.assignManager = {
|
|||
// Ensure we have a cookieStore to assign to
|
||||
if (cookieStore
|
||||
&& this.isTabPermittedAssign(tab)) {
|
||||
return this.storageArea.get(tab.url);
|
||||
const siteMatchResult = await this.storageArea.getOrWildcardMatch(tab.url);
|
||||
return siteMatchResult && siteMatchResult.siteSettings;
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue