We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fd4fe2 commit d7924dcCopy full SHA for d7924dc
1 file changed
packages/modules/internal_chargepoint_handler/pro_plus.py
@@ -27,7 +27,8 @@ def store_state(chargepoint_state: ChargepointState) -> None:
27
28
try:
29
chargepoint_state = super().request_values()
30
- chargepoint_state.rfid = last_tag
+ if last_tag is not None and last_tag != "":
31
+ chargepoint_state.rfid = last_tag
32
except (requests.exceptions.ConnectTimeout, requests.exceptions.ConnectionError):
33
raise Exception("Interner Ladepunkt ist nicht erreichbar.")
34
0 commit comments