Skip to content

Commit bc70573

Browse files
committed
fix NPE on connection to simulator
1 parent 8e4fdfa commit bc70573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java_console/ui/src/main/java/com/rusefi/StartupFrame.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private void connectButtonAction(JComboBox<String> comboSpeeds) {
213213
}
214214

215215
// Ensure that the bundle matches between the controller and console
216-
if (!selectedPort.signature.matchesBundle()) {
216+
if (selectedPort.signature != null && !selectedPort.signature.matchesBundle()) {
217217
int result = JOptionPane.showConfirmDialog(this.frame, "Looks like you're using the wrong console bundle for your controller.\nYou can attempt to proceed, but unexpected behavior may result.\nContinue at your own risk.", "WARNING", JOptionPane.OK_CANCEL_OPTION);
218218

219219
if (result != JOptionPane.OK_OPTION) {

0 commit comments

Comments
 (0)