Skip to content

Commit 65a1439

Browse files
committed
Bugfix
1 parent e287267 commit 65a1439

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

custom_components/solvis_control/coordinator.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ async def _async_update_data(self):
8989
parsed_data[register.name] = (
9090
abs(value) if register.absolute_value else value
9191
)
92-
if "version" in register.name:
93-
parsed_data[register.name] = ".".join(
94-
parsed_data[register.name].split(0, 2)
95-
)
92+
# if "version" in register.name:
93+
# parsed_data[register.name] = ".".join(
94+
# parsed_data[register.name].split(0, 2)
95+
# )
9696

9797
except ModbusException as error:
9898
_LOGGER.error(

0 commit comments

Comments
 (0)