Skip to content

Commit

Permalink
Fix issue with custom adapters at the node level. Fixes #3223
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 5, 2021
1 parent 671ced7 commit 0b94be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def _parseControllerResponse(self, result):
del result["properties"]

# Update common element of all nodes
for key in ["x", "y", "z", "locked", "symbol", "label", "console_host", "console", "console_type", "console_auto_start", "custom_adapters"]:
for key in ["x", "y", "z", "locked", "symbol", "label", "console_host", "console", "console_type", "console_auto_start", "custom_adapters", "first_port_name", "port_name_format", "port_segment_size"]:
if key in result:
self._settings[key] = result[key]

Expand Down

0 comments on commit 0b94be6

Please sign in to comment.