Skip to content

Commit 434763c

Browse files
authored
Fix update progress in Teslemetry (home-assistant#156422)
1 parent 8cd2c1b commit 434763c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/teslemetry/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def _async_update_progress(self) -> None:
237237
if self._download_percentage > 1 and self._download_percentage < 100:
238238
self._attr_in_progress = True
239239
self._attr_update_percentage = self._download_percentage
240-
elif self._install_percentage > 1:
240+
elif self._install_percentage > 10:
241241
self._attr_in_progress = True
242242
self._attr_update_percentage = self._install_percentage
243243
else:

0 commit comments

Comments
 (0)