[geodb] Was missing country boundary type in GeoDB causing some misses in parsing

This commit is contained in:
Al
2015-10-06 16:01:18 -04:00
parent 5af6dc77d1
commit 3084fc929b

View File

@@ -348,6 +348,8 @@ uint16_t get_address_component(uint32_t boundary_type) {
return ADDRESS_NEIGHBORHOOD;
} else if (boundary_type == GEONAMES_ADMIN1) {
return ADDRESS_ADMIN1;
} else if (boundary_type == COUNTRY) {
return ADDRESS_COUNTRY;
} else if (boundary_type == GEONAMES_ADMIN2) {
return ADDRESS_ADMIN2;
} else if (boundary_type == GEONAMES_ADMIN3) {