From 99123aa608f4bf5438c5e3df8687d983b9c49952 Mon Sep 17 00:00:00 2001 From: Ladislav Hano <524934@fi.muni.cz> Date: Wed, 1 Mar 2023 15:04:37 +0100 Subject: [PATCH] Fixed pings crashing app --- ping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ping.js b/ping.js index 5e072d1..7e72101 100644 --- a/ping.js +++ b/ping.js @@ -1,5 +1,5 @@ require('dotenv').config(); -const { client } = require('./main'); +const client = require('./main'); const { bModel, eModel } = require('./database/schemas'); const help = require('./helpFunctions');