Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/wled/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def release_url(self) -> str | None:
"""URL to the full release notes of the latest version available."""
if (version := self.latest_version) is None:
return None
return f"https://github.com/Aircoookie/WLED/releases/tag/v{version}"
return f"https://github.com/wled/WLED/releases/tag/v{version}"

@wled_exception_handler
async def async_install(
Expand Down
4 changes: 2 additions & 2 deletions tests/components/wled/test_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def test_update_available(
assert state.attributes[ATTR_RELEASE_SUMMARY] is None
assert (
state.attributes[ATTR_RELEASE_URL]
== "https://github.com/Aircoookie/WLED/releases/tag/v0.99.0"
== "https://github.com/wled/WLED/releases/tag/v0.99.0"
)
assert (
state.attributes[ATTR_SUPPORTED_FEATURES]
Expand Down Expand Up @@ -118,7 +118,7 @@ async def test_no_update_available(
assert state.attributes[ATTR_RELEASE_SUMMARY] is None
assert (
state.attributes[ATTR_RELEASE_URL]
== "https://github.com/Aircoookie/WLED/releases/tag/v0.99.0"
== "https://github.com/wled/WLED/releases/tag/v0.99.0"
)
assert (
state.attributes[ATTR_SUPPORTED_FEATURES]
Expand Down
Loading