diff --git a/enabler/src/de/schildbach/pte/AbstractEfaProvider.java b/enabler/src/de/schildbach/pte/AbstractEfaProvider.java index 5a347289..f54dbf92 100644 --- a/enabler/src/de/schildbach/pte/AbstractEfaProvider.java +++ b/enabler/src/de/schildbach/pte/AbstractEfaProvider.java @@ -342,7 +342,7 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider return new Location(LocationType.POI, 0, lat, lon, place, name); else if ("crossing".equals(type)) return new Location(LocationType.ADDRESS, 0, lat, lon, place, name); - else if ("street".equals(type) || "address".equals(type) || "singlehouse".equals(type)) + else if ("street".equals(type) || "address".equals(type) || "singlehouse".equals(type) || "buildingname".equals(type)) return new Location(LocationType.ADDRESS, 0, lat, lon, place, normalizeLocationName(stop.getString("name"))); else throw new JSONException("unknown type: " + type);