Calling save before load would crash Lovelace storage (#20368)
This commit is contained in:
parent
af3afb673a
commit
5580bec1d3
2 changed files with 23 additions and 0 deletions
|
@ -101,6 +101,8 @@ class LovelaceStorage:
|
|||
|
||||
async def async_save(self, config):
|
||||
"""Save config."""
|
||||
if self._data is None:
|
||||
self._data = {'config': None}
|
||||
self._data['config'] = config
|
||||
await self._store.async_save(self._data)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue