зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1110420: need to not do geo-specific defaults for distribution builds. r=markh
This commit is contained in:
Родитель
7ebdc17896
Коммит
5914eb88f1
|
@ -411,7 +411,12 @@ function getIsUS() {
|
|||
geoSpecificDefaults = Services.prefs.getBoolPref("browser.search.geoSpecificDefaults");
|
||||
} catch(e) {}
|
||||
|
||||
if (!geoSpecificDefaults) {
|
||||
let distroID;
|
||||
try {
|
||||
distroID = Services.prefs.getCharPref("distribution.id");
|
||||
} catch (e) {}
|
||||
|
||||
if (!geoSpecificDefaults || distroID) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче