2 Commits

Author SHA1 Message Date
naomi 276cbb845a release: v0.0.6
Node.js CI / Lint and Test (push) Successful in 29s
2025-10-08 15:06:14 -07:00
naomi 9afe0d55c2 fix: cron every day not hour 2025-10-08 15:05:56 -07:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nhcarrigan/discord-analytics",
"version": "0.0.5",
"version": "0.0.6",
"description": "Package that pairs with our logging tool to provide analytics for our Discord bots.",
"type": "module",
"private": false,
+1 -1
View File
@@ -34,7 +34,7 @@ export class DiscordAnalytics {
if (this.job) {
return;
}
this.job = scheduleJob("metrics", "0 * * * *", async() => {
this.job = scheduleJob("metrics", "0 0 * * *", async() => {
try {
const fakeGuilds = await this.client.guilds.fetch();
const guilds = await Promise.all(