1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 10:52:19 +01:00

Fix crash when storage file doesnt exist yet (#8249)

This commit is contained in:
Jesse Hills
2025-02-14 14:27:11 +13:00
parent 6999cc0581
commit daa7960031

View File

@@ -853,7 +853,7 @@ class InfoRequestHandler(BaseHandler):
dashboard = DASHBOARD
entry = dashboard.entries.get(yaml_path)
if not entry:
if not entry or entry.storage is None:
self.set_status(404)
return