We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88a91a3 commit 40923e2Copy full SHA for 40923e2
arduino-ide-extension/src/node/core-service-impl.ts
@@ -412,6 +412,11 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
412
rpcPort.setLabel(port.addressLabel);
413
rpcPort.setProtocol(port.protocol);
414
rpcPort.setProtocolLabel(port.protocolLabel);
415
+ if (port.properties) {
416
+ for (const [key, value] of Object.entries(port.properties)) {
417
+ rpcPort.getPropertiesMap().set(key, value);
418
+ }
419
420
}
421
return rpcPort;
422
0 commit comments