Skip to content

Commit

Permalink
Merge pull request #1054 from LKuemmel/web
Browse files Browse the repository at this point in the history
fix display standby
  • Loading branch information
LKuemmel authored Jul 26, 2023
2 parents f61429c + 3f44072 commit 65d893c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/helpermodules/setdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def process_optional_topic(self, msg: mqtt.MQTTMessage):
elif "openWB/set/optional/int_display/pin_code" in msg.topic:
self._validate_value(msg, str)
elif "openWB/set/optional/int_display/standby" in msg.topic:
self._validate_value(msg, int, [(0, 300)])
self._validate_value(msg, int, [(0, 600)])
elif "openWB/set/optional/int_display/theme" in msg.topic:
self._validate_value(msg, "json")
elif "openWB/set/optional/led/active" in msg.topic:
Expand Down

0 comments on commit 65d893c

Please sign in to comment.