Skip to content

Commit

Permalink
Fix buildOptions for DFU mode (#3693)
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis authored Dec 24, 2023
1 parent 1c78f88 commit 8106a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tabs/firmware_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ firmware_flasher.updateDetectBoardButton = function() {
};

firmware_flasher.validateBuildKey = function() {
return this.cloudBuildKey.length === 32;
return this.cloudBuildKey?.length === 32;
};

/**
Expand Down

0 comments on commit 8106a0c

Please sign in to comment.