This commit is contained in:
Christopher Cookman 2024-06-18 21:59:44 -06:00
parent 1431419167
commit 4cf9f775ec
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -728,6 +728,7 @@ dcClient.on('ready', async () => {
}); });
if (config.status?.url) {
// Uptime Kuma Ping // Uptime Kuma Ping
// Calculate ping to Discord API // Calculate ping to Discord API
@ -749,7 +750,7 @@ dcClient.on('ready', async () => {
}) })
}, config.status.interval * 1000); }, config.status.interval * 1000);
const start = Date.now(); const start = Date.now();
if (config.status?.url) {
axios.get("https://discord.com/api/gateway").then((result) => { axios.get("https://discord.com/api/gateway").then((result) => {
const latency = Date.now() - start; const latency = Date.now() - start;
axios.get(config.status.url + `?status=up&msg=OK&ping=${latency}`).then((result) => { axios.get(config.status.url + `?status=up&msg=OK&ping=${latency}`).then((result) => {
@ -760,6 +761,8 @@ dcClient.on('ready', async () => {
}) })
} }
// Start doing SSH stuff // Start doing SSH stuff
sendLog(`${colors.cyan("[INFO]")} Starting SSH connection`); sendLog(`${colors.cyan("[INFO]")} Starting SSH connection`);
await sshConn.connect({ await sshConn.connect({