fix: Send ping interval

This commit is contained in:
Siwoo Jeon 2024-06-16 17:47:51 +09:00
parent 304f7e557d
commit 63607f6f79
Signed by: migan
GPG key ID: C4151385FFD2082A

View file

@ -73,7 +73,7 @@ export default class ChatBot {
setInterval(async () => {
await this.db.ping()
}, 60000)
}, 600000)
return this
}
}