Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit 63228d6

Browse files
SORMAS-Foundation#3139 Omit geocoding when street is not specified
1 parent ef8bb19 commit 63228d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sormas-backend/src/main/java/de/symeda/sormas/backend/geocoding/GeocodingFacadeEjb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public boolean isEnabled() {
7474
@Override
7575
public GeoLatLon getLatLon(String street, String houseNumber, String postalCode, String city) {
7676

77-
if (StringUtils.isBlank(houseNumber)) {
77+
if (StringUtils.isBlank(street)) {
7878
return null;
7979
}
8080

0 commit comments

Comments
 (0)