Skip to content

Commit

Permalink
Don't save metrics on start
Browse files Browse the repository at this point in the history
  • Loading branch information
RappyTV committed Oct 6, 2024
1 parent 39275a0 commit fc29eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/Metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ type Addon = {

export function initializeMetrics() {
Logger.debug(`Metric initialized.`);
new CronJob(`0 0 * * *`, saveMetrics, null, true, "Europe/Berlin", null, true);
new CronJob(`0 0 * * *`, saveMetrics, null, true, "Europe/Berlin");
}

async function saveMetrics() {
Expand Down

0 comments on commit fc29eb1

Please sign in to comment.