We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9d53a commit 5abdbdeCopy full SHA for 5abdbde
src/Cache.ts
@@ -53,9 +53,9 @@ export default class Cache {
53
entityNames: string[],
54
hass: HomeAssistant
55
) {
56
- return (this.busy = this.busy.then(() =>
57
- this._update(range, removeOutsideRange, entityNames, hass)
58
- ));
+ return (this.busy = this.busy
+ .catch(() => {})
+ .then(() => this._update(range, removeOutsideRange, entityNames, hass)));
59
}
60
61
private removeOutsideRange(range: TimestampRange) {
0 commit comments