Fix init from custom poi types

This commit is contained in:
Chumva 2018-09-19 14:27:50 +03:00
parent fd7f8895a0
commit e9bc3d1bc3

View file

@ -336,7 +336,7 @@ public class AppInitializer implements IProgress {
private void initPoiTypes() {
if (app.getAppPath(IndexConstants.SETTINGS_DIR + "poi_types.xml").exists()) {
app.poiTypes.init(app.getAppPath("poi_types.xml").getAbsolutePath());
app.poiTypes.init(app.getAppPath(IndexConstants.SETTINGS_DIR + "poi_types.xml").getAbsolutePath());
} else {
app.poiTypes.init();
}