diff --git a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyListFragment.java b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyListFragment.java index fd40ff3e9..c4239a794 100644 --- a/app/src/main/java/fr/free/nrw/commons/nearby/NearbyListFragment.java +++ b/app/src/main/java/fr/free/nrw/commons/nearby/NearbyListFragment.java @@ -141,8 +141,10 @@ public class NearbyListFragment extends ListFragment { TextView distance = (TextView) convertView.findViewById(R.id.distance); ImageView icon = (ImageView) convertView.findViewById(R.id.icon); + String quotelessName = place.name.replaceAll("^\"|\"$", ""); + // Populate the data into the template view using the data object - tvName.setText(place.name); + tvName.setText(quotelessName); tvDesc.setText(place.description); distance.setText(place.distance); diff --git a/app/src/main/res/drawable/icon_landmark.png b/app/src/main/res/drawable/icon_landmark.png index 4bc21e52d..9024b3fda 100644 Binary files a/app/src/main/res/drawable/icon_landmark.png and b/app/src/main/res/drawable/icon_landmark.png differ