Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sdahl1234 authored May 8, 2024
1 parent 441c6b0 commit 063ac9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components/sunseeker/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"integration_type": "device",
"iot_class": "cloud_push",
"config_flow": true,
"version": "1.0.11"
"version": "1.0.12"
}
8 changes: 4 additions & 4 deletions custom_components/sunseeker/sunseeker.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,13 +364,13 @@ def on_mqtt_message(self, client, userdata, message): # noqa: C901
if "mul_zon4" in data:
device.mul_zon4 = data.get("mul_zon4")
if "mul_pro1" in data:
device.mulpro1 = data.get("mul_pro1")
device.mulpro_zon1 = data.get("mul_pro1")
if "mul_pro2" in data:
device.mulpro2 = data.get("mul_pro2")
device.mulpro_zon2 = data.get("mul_pro2")
if "mul_pro3" in data:
device.mulpro3 = data.get("mul_pro3")
device.mulpro_zon3 = data.get("mul_pro3")
if "mul_pro4" in data:
device.mulpro4 = data.get("mul_pro4")
device.mulpro_zon4 = data.get("mul_pro4")
if "Mon" in data:
device.Schedule.UpdateFromMqtt(data.get("Mon"), 1)
schedule = True
Expand Down

0 comments on commit 063ac9c

Please sign in to comment.