We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4033ed6 commit 20d99f5Copy full SHA for 20d99f5
arduino-ide-extension/src/node/boards-service-impl.ts
@@ -257,7 +257,7 @@ export class BoardsServiceImpl
257
const platform = board.getPlatform();
258
if (platform) {
259
const platformId = platform.getId();
260
- const fqbn = board.getFqbn();
+ const fqbn = board.getFqbn() || undefined; // prefer undefined over empty string
261
const parsedPlatformId = createPlatformIdentifier(platformId);
262
if (!parsedPlatformId) {
263
console.warn(
0 commit comments