fix: change call to nonexistent method storageArea.getByContainer to the existing _getByContainer

This commit is contained in:
danjovich 2024-02-13 17:31:46 -03:00
parent 018b458ef6
commit a5ec9e2028

View file

@ -622,7 +622,7 @@ window.assignManager = {
},
async _maybeRemoveSiteIsolation(userContextId) {
const assignments = await this.storageArea.getByContainer(userContextId);
const assignments = await this._getByContainer(userContextId);
const hasAssignments = assignments && Object.keys(assignments).length > 0;
if (hasAssignments) {
return;