Compare commits
2 commits
6673d3c294
...
f9097ae68d
Author | SHA1 | Date | |
---|---|---|---|
f9097ae68d | |||
c03d329c3d |
1 changed files with 9 additions and 2 deletions
|
@ -121,7 +121,7 @@ function requestReply(
|
|||
* @returns if the request can be replied to
|
||||
*/
|
||||
function canReplyToRequest(request: apiRequest) {
|
||||
return !(request.guild?.members.me?.permissionsIn(request.channel as GuildTextBasedChannel).has("SendMessages") ?? true);
|
||||
return (request.guild?.members.me?.permissionsIn(request.channel as GuildTextBasedChannel).has("SendMessages") ?? true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -286,12 +286,19 @@ async function executeFromQueue(channel: string) {
|
|||
console.error(`Error ocurred while handling chat completion request (${(e as object).constructor.name}):`);
|
||||
console.error(e);
|
||||
|
||||
let errorText = "\n";
|
||||
|
||||
if (e instanceof Error) {
|
||||
errorText += e.message;
|
||||
}
|
||||
else errorText = "";
|
||||
|
||||
requestReply(
|
||||
message,
|
||||
{
|
||||
embeds: [{
|
||||
color: 0xff0000,
|
||||
description: "Something bad happened! :frowning:"
|
||||
description: "Something bad happened! :frowning:" + errorText
|
||||
}],
|
||||
},
|
||||
{allowedMentions: { repliedUser: false } },
|
||||
|
|
Loading…
Reference in a new issue