diff --git a/src/app.ts b/src/app.ts index 4064527..41c032e 100644 --- a/src/app.ts +++ b/src/app.ts @@ -8,10 +8,10 @@ const LanaGrossaIntegrationInstance = new LanaGrossaIntegration(); // start update every 24 hours setInterval(() => { LanaGrossaIntegrationInstance.RunFetcher(); -}, 1000 * 60 * 60 * 1); +}, 1000 * 60 * 60 * 3); LanaGrossaIntegrationInstance.RunFetcher(); -server.get("/stats", async (request, reply) => { +server.get("/", async (request, reply) => { const CurrentStats = LanaGrossaIntegrationInstance.CurrentStats; const StatList = LanaGrossaIntegrationInstance.StatList;