From 63607f6f7946ab86b4a48a213f1002f3c3f67051 Mon Sep 17 00:00:00 2001 From: Migan178 Date: Sun, 16 Jun 2024 17:47:51 +0900 Subject: [PATCH] fix: Send ping interval --- src/modules/ChatBot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ChatBot.ts b/src/modules/ChatBot.ts index 0376735..21e6b32 100644 --- a/src/modules/ChatBot.ts +++ b/src/modules/ChatBot.ts @@ -73,7 +73,7 @@ export default class ChatBot { setInterval(async () => { await this.db.ping() - }, 60000) + }, 600000) return this } }