Skip to content

Commit d5cdb44

Browse files
fix not equal sign
1 parent 7200dc5 commit d5cdb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arduino/boardManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export class BoardManager {
229229
// });
230230

231231
// Check if platform name is the same, if not, we should use the name from the latest version.
232-
if (addedPlatform.name != plat.name) {
232+
if (addedPlatform.name !== plat.name) {
233233
addedPlatform.name = plat.name;
234234
}
235235

0 commit comments

Comments
 (0)