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

Don't return false for addon startup on update (#153)

This commit is contained in:
Pascal Vizeli
2017-08-15 21:30:05 +02:00
committed by GitHub
parent eab958860c
commit 4af92b9d25

View File

@@ -496,7 +496,7 @@ class Addon(object):
# restore state
if last_state == STATE_STARTED:
return await self.docker.run()
await self.docker.run()
return True
@check_installed