Skip to content

Commit

Permalink
fix mijnafvalwijzer bad date format (%Y-%d-%m)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Dec 23, 2024
1 parent fd7b698 commit b76bea8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/collector/mijnafvalwijzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ def get_waste_data_raw(provider, postal_code, street_number, suffix):
except KeyError as err:
raise KeyError(f"Invalid and/or no data received from {url}") from err

return ophaaldagen_data + ophaaldagen_next_data
return ophaaldagen_data + ophaaldagen_next_data[:25]
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/const/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

API = "api"
NAME = "afvalwijzer"
VERSION = "2024.12.05"
VERSION = "2024.12.06"

ISSUE_URL = "https://github.com/xirixiz/homeassistant-afvalwijzer/issues"

Expand Down
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/xirixiz/homeassistant-afvalwijzer/issues",
"requirements": [],
"version": "2024.12.05"
"version": "2024.12.06"
}
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = 2024.12.05
current_version = 2024.12.06
version_pattern = MAJOR.MINOR.PATCH[PYTAGNUM]

[bumpver:file_patterns]
Expand Down

0 comments on commit b76bea8

Please sign in to comment.