We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0869f7 commit 64ea7b7Copy full SHA for 64ea7b7
src/modules/listener/tickDetector.ts
@@ -34,6 +34,10 @@ export class TickDetector {
34
console.log('Connected to Tick Detector');
35
});
36
37
+ this.socket.on('connect_error', (error) => {
38
+ console.log('Connection Error', error)
39
+ });
40
+
41
this.socket.on('tick', async (data) => {
42
let tickTime = new Date(data);
43
let guilds = await this.db.model.guild.find({
0 commit comments