Skip to content

Commit

Permalink
fix: last caching issue with statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
RomRider committed Apr 22, 2022
1 parent b93ee75 commit 2e528f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphEntry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default class GraphEntry {
}

set cache(cache: boolean) {
this._cache = cache;
this._cache = this._config.statistics ? false : cache;
}

get lastState(): number | null {
Expand Down

0 comments on commit 2e528f7

Please sign in to comment.