We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4eef64 commit fde4a21Copy full SHA for fde4a21
library/src/main/java/com/google/maps/android/data/Renderer.java
@@ -1159,7 +1159,7 @@ public View getInfoContents(@NonNull Marker arg0) {
1159
TextView infoWindowText = view.findViewById(R.id.window);
1160
if (arg0.getSnippet() != null) {
1161
infoWindowText.setText(Html.fromHtml(arg0.getTitle() + "<br>" + arg0.getSnippet()));
1162
- } else {
+ } else if (arg0.getTitle() != null) {
1163
infoWindowText.setText(Html.fromHtml(arg0.getTitle()));
1164
}
1165
return view;
0 commit comments