Skip to content

Commit e693fc3

Browse files
committed
fix the unique name issue
1 parent 1a0962d commit e693fc3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

custom_components/mammotion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ async def _async_refresh_map(_: datetime) -> None:
324324
stay_connected_ble=stay_connected_ble,
325325
)
326326

327-
rtk_unique_name = _get_unique_device_name(hass, entry, rtk.device_name)
327+
rtk_unique_name = rtk.device_name
328328
rtk_coordinator = MammotionRTKCoordinator(
329329
hass, entry, rtk, mammotion, unique_name=rtk_unique_name
330330
)

custom_components/mammotion/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"domain": "mammotion",
33
"name": "Mammotion",
4-
"version": "0.5.23",
4+
"version": "0.5.22",
55
"issue_tracker": "https://github.com/mikey0000/Mammotion-HA/issues",
66
"integration_type": "device",
77
"bluetooth": [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Mammotion-HA"
3-
version = "0.5.23"
3+
version = "0.5.22"
44
description = "Mammotion integration for HACS"
55
authors = ["Michael Arthur <michael@jumblesoft.co.nz>", "jLynx <@jlynx>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)