Bug 1856397 - Set "error" type to the incompatible message bar in `about:addons`. r=rpl

Differential Revision: https://phabricator.services.mozilla.com/D189834
This commit is contained in:
William Durand 2023-10-09 12:11:33 +00:00
Родитель e1c000ce71
Коммит 41b6a1662a
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -283,7 +283,7 @@ async function getAddonMessageInfo(addon) {
return {
messageId: "details-notification-incompatible2",
messageArgs: { name, version: Services.appinfo.version },
type: "warning",
type: "error",
};
} else if (!isCorrectlySigned(addon)) {
return {

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

@ -204,7 +204,7 @@ add_task(async function testIncompatible() {
id: "details-notification-incompatible",
args: { name, version: appVersion },
},
type: "warning",
type: "error",
});
});