10000 Error message if upload is not possible by francescospissu · Pull Request #1353 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

Error message if upload is not possible #1353

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 26, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
Next Next commit
remove return if fqbn address is not available
  • Loading branch information
francescospissu committed Aug 24, 2022
commit 9cc49319df60ef08242933fb8374ea6490db213b
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ export class UploadSketch extends CoreServiceContribution {
registry.registerCommand(UploadSketch.Commands.UPLOAD_SKETCH, {
execute: async () => {
const key = this.selectedFqbnAddress();
if (!key) {
return;
}
if (this.boardRequiresUserFields && !this.cachedUserFields.has(key)) {
// Deep clone the array of board fields to avoid editing the cached ones
this.userFieldsDialog.value = (
Expand Down
0