Wildcard subdomains - fix right-click context menu displaying incorrect "Always open in" status
This commit is contained in:
parent
83fd73b342
commit
cf662b5f01
1 changed files with 2 additions and 1 deletions
|
@ -734,7 +734,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