Store null save

This commit is contained in:
Peter Maquiran
2021-07-23 16:10:47 +01:00
parent 3895106231
commit 4fdae89fbf
5 changed files with 5 additions and 5 deletions
@@ -23,7 +23,7 @@ export class ToDayEventStorageService {
setTimeout(()=>{
let restore = localstoreService.get(this.keyName, {})
this._eventsList = restore.eventsList || []
this._count = restore.count || 0
this._count = this._eventsList.length || 0
}, 10)
}