1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

idk if it works, honestly.

This commit is contained in:
toast-ts 2023-05-12 13:08:28 +10:00
parent 8b6036e8f0
commit f23cde0e8f

View File

@ -19,7 +19,7 @@ export default async(client:TClient,Channel:string,Message:string,ServerName:str
data: {} as FSCareerSavegame, fetchResult: '' as string
};
if (!Server.ip.match(/http|https/)) return msg.edit({content: '*Detected an invalid IP\nContact MP Manager or Bot Tech*', embeds: null});
if (!Server?.ip?.match(/http|https/)) return msg.edit({content: '*Detected an invalid IP\nContact MP Manager or Bot Tech*', embeds: null});
async function serverData(client:TClient, URL:string){
return await client.axios.get(URL, {timeout: 5000, maxContentLength: Infinity, headers:{'User-Agent':`Daggerbot/axios ${client.axios.VERSION}`}}).catch((error:Error)=>error.message)
}