Bug 738439 - typo in Webapps.jsm [r=fabrice]

This commit is contained in:
David Flanagan 2012-03-22 14:26:36 -07:00
Родитель e544bd9c40
Коммит c1e4fbd6d3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -405,7 +405,7 @@ DOMApplicationManifest = function(aManifest, aOrigin) {
else if (this._manifest.locales) {
// try with the language part of the locale ("en" for en-GB) only
let lang = locale.split('-')[0];
if (land != locale && this._manifest.locales[lang])
if (lang != locale && this._manifest.locales[lang])
this._localeRoot = this._manifest.locales[lang];
}
}