Skip to content

Commit 62c3dcc

Browse files
committed
add another null check
1 parent 10aed9c commit 62c3dcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/contrib/ListPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ private void configureStatusColumnLabel(JLabel label, Contribution contribution)
352352
icon = incompatibleIcon;
353353
} else if (ContributionListing.getInstance().hasUpdates(contribution)) {
354354
icon = updateAvailableIcon;
355-
} else if (detail.installInProgress || detail.updateInProgress) {
355+
} else if (detail != null && (detail.installInProgress || detail.updateInProgress)) {
356356
icon = downloadingIcon;
357357
} else {
358358
icon = upToDateIcon;

0 commit comments

Comments
 (0)