Skip to content

Commit

Permalink
fix: 24 hours, not minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
0x009922 committed Jul 24, 2024
1 parent 761334a commit c9c9067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const api = new Api({
});

// 24 hours
const CACHE_TTL = 60_000 * 24;
const CACHE_TTL = 60_000 * 60 * 24;

class State {
#data: null | { matrix: Matrix; lastUpdated: Date } = null;
Expand Down

0 comments on commit c9c9067

Please sign in to comment.