Skip to content

Commit

Permalink
Also show indoor label without house number
Browse files Browse the repository at this point in the history
For #5170, follow-up to a154cde
  • Loading branch information
FloEdelmann authored Oct 20, 2023
1 parent a154cde commit 0daa12b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private fun getLocationHtml(
return if ((level != null || indoor != null) && houseNumber != null) {
resources.getString(R.string.label_housenumber_location, houseNumber, level ?: indoor)
} else {
level ?: houseNumber
level ?: indoor ?: houseNumber
}
}

Expand Down

0 comments on commit 0daa12b

Please sign in to comment.