зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1633396 Skip blocklist checks for system/builtin addons r=zombie
Differential Revision: https://phabricator.services.mozilla.com/D74533
This commit is contained in:
Родитель
4481f7e004
Коммит
c01f8d4891
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче