Safely handle some data being null in the HTML info view.
| 1028 | 1036 | |
|---|---|---|
| 1903 | 1903 | } |
| 1904 | 1904 | |
| 1905 | 1905 | private String buildRow(String label, Object value) { |
| 1906 | return newRow + label + newCol + value.toString() + endRow; | |
| 1906 | return newRow + label + newCol + (value != null ? value.toString() : "null") + endRow; | |
| 1907 | 1907 | } |
| 1908 | 1908 | |
| 1909 | 1909 | private String buildInfoBody(String prompt, boolean includeEvents, boolean addedThumbnail) { |
