Skip to content

Commit a4319f3

Browse files
mik-lajfrenck
authored andcommitted
Update release URL in WLED (home-assistant#157801)
1 parent db27aee commit a4319f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

homeassistant/components/wled/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def release_url(self) -> str | None:
102102
"""URL to the full release notes of the latest version available."""
103103
if (version := self.latest_version) is None:
104104
return None
105-
return f"https://github.com/Aircoookie/WLED/releases/tag/v{version}"
105+
return f"https://github.com/wled/WLED/releases/tag/v{version}"
106106

107107
@wled_exception_handler
108108
async def async_install(

tests/components/wled/test_update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async def test_update_available(
5454
assert state.attributes[ATTR_RELEASE_SUMMARY] is None
5555
assert (
5656
state.attributes[ATTR_RELEASE_URL]
57-
== "https://github.com/Aircoookie/WLED/releases/tag/v0.99.0"
57+
== "https://github.com/wled/WLED/releases/tag/v0.99.0"
5858
)
5959
assert (
6060
state.attributes[ATTR_SUPPORTED_FEATURES]
@@ -118,7 +118,7 @@ async def test_no_update_available(
118118
assert state.attributes[ATTR_RELEASE_SUMMARY] is None
119119
assert (
120120
state.attributes[ATTR_RELEASE_URL]
121-
== "https://github.com/Aircoookie/WLED/releases/tag/v0.99.0"
121+
== "https://github.com/wled/WLED/releases/tag/v0.99.0"
122122
)
123123
assert (
124124
state.attributes[ATTR_SUPPORTED_FEATURES]

0 commit comments

Comments
 (0)