1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 12:30:58 -04:00

:rock_eyebrow:

This commit is contained in:
AnxietyisReal 2023-01-15 18:38:40 +11:00
parent bd08f6eb55
commit 7bb34ee120

View File

@ -83,7 +83,7 @@ setInterval(async()=>{
};
if (!verifyURL) return msg.edit({content: 'Invalid gameserver IP, please update!', embeds: null})
async function serverData(client:TClient, URL: string){
return await client.axios.get(URL, {timeout: 4000, headers: {'User-Agent': `Daggerbot/axios ${client.axios.VERSION}`}}).catch((error:Error)=>error.message)
return await client.axios.get(URL, {timeout: 4000, maxContentLength: Infinity, headers: {'User-Agent': `Daggerbot/axios ${client.axios.VERSION}`}}).catch((error:Error)=>error.message)
}
await Promise.all([serverData(client, completedURL_DSS), serverData(client, completedURL_CSG)]).then(function(results){
if (typeof results[0] == 'string'){