Bug 1633396 Skip blocklist checks for system/builtin addons r=zombie

Differential Revision: https://phabricator.services.mozilla.com/D74533
This commit is contained in:
Andrew Swan 2020-05-12 01:58:03 +00:00
Родитель 4481f7e004
Коммит c01f8d4891
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -568,6 +568,10 @@ class AddonInternal {
}
async updateBlocklistState(options = {}) {
if (this.location.isSystem || this.location.isBuiltin) {
return;
}
let { applySoftBlock = true, updateDatabase = true } = options;
let oldState = this.blocklistState;