[expansion] Adding the ability to search address dictionary phrases with a NULL language, will return phrases in any language

This commit is contained in:
Al
2015-09-15 13:24:53 -04:00
parent c47ff1b113
commit e122824448
6 changed files with 17 additions and 12 deletions

View File

@@ -163,8 +163,8 @@ inline geonames_generic_t *geodb_get(char *key) {
}
bool geodb_module_setup(char *dir) {
if (db == NULL && dir != NULL) {
return geodb_load(dir);
if (db == NULL) {
return geodb_load(dir == NULL ? LIBPOSTAL_GEODB_DIR : dir);
}
return false;