forked from 0x2620/pandora
quick fix for pad.ma statistics
This commit is contained in:
parent
24b99503ec
commit
5a47388d64
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ pandora.ui.statisticsDialog = function() {
|
||||||
country = split[1];
|
country = split[1];
|
||||||
city = split[0];
|
city = split[0];
|
||||||
}
|
}
|
||||||
countryData = Ox.getCountryByName(country);
|
countryData = Ox.getCountryByName(country) || {continent: '', region: ''};
|
||||||
continent = countryData.continent;
|
continent = countryData.continent;
|
||||||
region = [continent, countryData.region].join(', ');
|
region = [continent, countryData.region].join(', ');
|
||||||
country = [region, country].join(', ')
|
country = [region, country].join(', ')
|
||||||
|
|
Loading…
Reference in a new issue