Skip to content

Commit

Permalink
Fix error in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
Cimbali committed Sep 12, 2023
1 parent 3b346bc commit a8dc4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/background/assignManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ window.assignManager = {
},

async _maybeRemoveSiteIsolation(userContextId) {
const assignments = await this.storageArea.getByContainer(userContextId);
const assignments = await this.storageArea.getAssignedSites(userContextId);
const hasAssignments = assignments && Object.keys(assignments).length > 0;
if (hasAssignments) {
return;
Expand Down

0 comments on commit a8dc4b6

Please sign in to comment.