Skip to content

Commit f4c2281

Browse files
committed
Fix MOHU naming inconsistencies
1 parent cd4fb34 commit f4c2281

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

custom_components/fkf-garbage-collection/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"dependencies": [],
66
"config_flow": false,
77
"codeowners": ["@amaximus"],
8-
"version": "0.10.5",
8+
"version": "0.10.6",
99
"iot_class": "cloud_polling",
1010
"requirements": ["lxml", "voluptuous"]
1111
}

custom_components/fkf-garbage-collection/sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ async def async_get_fkfdata(self):
267267

268268
matchre = re.search("<strong>(.+?)</strong>",line)
269269
if matchre != None:
270-
s2 = matchre.group(1).lower().capitalize()
270+
s2 = matchre.group(1).lower().capitalize().replace("&nbsp;","")
271271
_LOGGER.debug("found green: " + s2)
272272
break
273273
else:

tracker.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"fkf-garbage-collection": {
3-
"version": "0.10.5",
4-
"updated_at": "2025-05-07",
3+
"version": "0.10.6",
4+
"updated_at": "2025-05-14",
55
"visit_repo": "https://github.com/amaximus/fkf-garbage-collection",
6-
"changelog": "https://github.com/amaximus/fkf-garbage-collection/releases/0.10.5"
6+
"changelog": "https://github.com/amaximus/fkf-garbage-collection/releases/0.10.6"
77
}
88
}

0 commit comments

Comments
 (0)