Bug 1333423 - multiProcessCompatible=false should always be honored. r=felipe

This commit is contained in:
Michael Kaply 2017-01-24 15:56:26 -06:00
Родитель 87beaef2df
Коммит 4c029d3114
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -938,11 +938,11 @@ Object.defineProperty(this, "isAddonPartOfE10SRollout", {
let policy = RolloutPolicy[policyId];
if (policy.alladdons) {
if (aAddon.mpcOptedOut == true) {
return false;
}
if (aAddon.mpcOptedOut == true) {
return false;
}
if (policy.alladdons) {
return true;
}