diff --git a/index.ts b/index.ts index a728f59..e771046 100644 --- a/index.ts +++ b/index.ts @@ -1097,5 +1097,5 @@ receiver.router.get('*', (req, res) => { cacheStuff(); - setTimeout(cacheStuff, 60 * 1000) // Cache every minute. Ratelimit is 1200 req/m anyways. + setInterval(cacheStuff, 60 * 1000) // Cache every minute. Ratelimit is 1200 req/m anyways. })();