1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

Cleanup last_version with latest_version inside code (#1012)

* Cleanup last_version with latest_version inside code

* Fix property
This commit is contained in:
Pascal Vizeli
2019-04-07 15:04:16 +02:00
committed by GitHub
parent d7bb9013d4
commit 118da3c275
8 changed files with 26 additions and 26 deletions

View File

@@ -74,7 +74,7 @@ class APISupervisor(CoreSysAttributes):
ATTR_SLUG: addon.slug,
ATTR_DESCRIPTON: addon.description,
ATTR_STATE: await addon.state(),
ATTR_VERSION: addon.last_version,
ATTR_VERSION: addon.latest_version,
ATTR_INSTALLED: addon.version_installed,
ATTR_REPOSITORY: addon.repository,
ATTR_ICON: addon.with_icon,