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 19d2a60 commit faa1aaeCopy full SHA for faa1aae
plugwise_usb/nodes/node.py
@@ -503,6 +503,12 @@ async def update_node_details(
503
hardware, model_info = version_to_model(hardware)
504
model_info = model_info.split(" ")
505
self._node_info.model = model_info[0]
506
+ # Handle Stealth M+ correctly
507
+ if model_info[1] == "M+":
508
+ self._node_info.model = model_info[0:1]
509
+ model_info[0] = model_info[0:1]
510
+ model_info.pop[1]
511
+
512
self._node_info.version = hardware
513
if self._node_info.model == "Unknown":
514
_LOGGER.warning(
0 commit comments