diff --git a/mobile/chrome/content/extensions.js b/mobile/chrome/content/extensions.js index eda8634ce37..c59f9957c84 100644 --- a/mobile/chrome/content/extensions.js +++ b/mobile/chrome/content/extensions.js @@ -854,7 +854,7 @@ AddonInstallListener.prototype = { error += aInstall.error; else if (aInstall.addon.blocklistState == Ci.nsIBlocklistService.STATE_BLOCKED) error += "Blocklisted"; - else if (!aInstall.addon.isCompatible) + else if (!aInstall.addon.isCompatible || !aInstall.addon.isPlatformCompatible) error += "Incompatible"; else return; // no need to show anything in this case