Return an empty array if there are no languages in territory

Only JavaScript is modified here. The corresponding PHP function
is unchanged to preserve consistency with other PHP functions.

Corresponding pull request in jquery.uls:
https://github.com/wikimedia/jquery.uls/pull/370

Downstream bug:
https://phabricator.wikimedia.org/T265158
This commit is contained in:
Amir Aharoni
2020-12-23 10:00:23 +02:00
committed by Niklas Laxström
parent 7093fe88cf
commit 4a61360950
2 changed files with 6 additions and 1 deletions

View File

@@ -281,7 +281,7 @@ function getDir( language ) {
* @return {string[]} list of language codes
*/
function getLanguagesInTerritory( territory ) {
return languageData.territories[ territory ];
return languageData.territories[ territory ] || [];
}
/**