1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-19 03:18:14 +00: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
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

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