mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 04:10:59 -05:00
Fix fetch failing to get data due to slow host connection
This commit is contained in:
parent
bf136d36c7
commit
2a0221cbd0
@ -32,7 +32,8 @@ export default async(client:TClient, Channel:string, Message:string, Server:TSer
|
|||||||
// Truncate unnecessary parts of the name for the MPServerCache
|
// Truncate unnecessary parts of the name for the MPServerCache
|
||||||
// This is a mess, but it works.
|
// This is a mess, but it works.
|
||||||
for (const filter of ['Official Daggerwin Game Server', 'Daggerwin Multifarm']) {
|
for (const filter of ['Official Daggerwin Game Server', 'Daggerwin Multifarm']) {
|
||||||
if (hitDSS.server.name.includes(filter)) client.MPServerCache[ServerName].name = ['Daggerwin', 'DagMF'][['Official Daggerwin Game Server', 'Daggerwin Multifarm'].indexOf(filter)];
|
if (hitDSS.server?.name === undefined) return;
|
||||||
|
if (hitDSS.server?.name.includes(filter)) client.MPServerCache[ServerName].name = ['Daggerwin', 'DagMF'][['Official Daggerwin Game Server', 'Daggerwin Multifarm'].indexOf(filter)];
|
||||||
}
|
}
|
||||||
|
|
||||||
//Timescale formatting
|
//Timescale formatting
|
||||||
@ -89,6 +90,7 @@ export default async(client:TClient, Channel:string, Message:string, Server:TSer
|
|||||||
}
|
}
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
if (err.message === 'The operation was aborted due to timeout') return msg.edit({content: 'Connection timed out.', embeds: [serverErrorEmbed]});
|
if (err.message === 'The operation was aborted due to timeout') return msg.edit({content: 'Connection timed out.', embeds: [serverErrorEmbed]});
|
||||||
|
if (err.message === 'Cannot read properties of undefined (reading \'name\')') return msg.edit({content: 'Connection to the host has been disrupted.', embeds: [serverErrorEmbed]});
|
||||||
msg.edit({content: null, embeds: [serverErrorEmbed]});
|
msg.edit({content: null, embeds: [serverErrorEmbed]});
|
||||||
console.log(client.logTime(), LogPrefix('MPModule'),`Failed to make a request for ${ServerName}:`, err.message)
|
console.log(client.logTime(), LogPrefix('MPModule'),`Failed to make a request for ${ServerName}:`, err.message)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user