Skip to content

Commit 720a71d

Browse files
committed
Merge branch 'release_231224' of https://github.com/fome-tech/fome-fw into release_231224
2 parents 6787efd + bc70573 commit 720a71d

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)