null check

dbus-notify
Zlatin Balevsky 2022-06-09 05:52:20 +01:00
parent 5365285e73
commit 11ce766af1
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ class PersonaOrProfileCellRenderer extends DefaultTableCellRenderer {
Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column)
if (value == null)
return this // TODO: investiage how this can happen
PersonaOrProfile pop = (PersonaOrProfile) value
if (pop.getThumbnail() != null && settings.personaRendererAvatars)