Merge branch 'GP-0_ryanmkurtz_PR-9411_64kramsystem_fix-bundlebuilt-npe'

This commit is contained in:
Ryan Kurtz
2026-07-23 04:58:24 -04:00

View File

@@ -300,9 +300,11 @@ public class BundleStatusTableModel
if (summary != null) { if (summary != null) {
Swing.runLater(() -> { Swing.runLater(() -> {
BundleStatus status = getStatus(bundle); BundleStatus status = getStatus(bundle);
status.setSummary(summary); if (status != null) {
int rowIndex = getRowIndex(status); status.setSummary(summary);
fireTableRowsUpdated(rowIndex, rowIndex); int rowIndex = getRowIndex(status);
fireTableRowsUpdated(rowIndex, rowIndex);
}
}); });
} }
} }