fixed typo in webhookHelper

This commit is contained in:
Aster Fialla
2026-02-24 16:41:00 -05:00
parent 5d8ff9c6c6
commit 6470b223f6

View File

@@ -45,8 +45,8 @@ wh.replaceMessage = async function(client, message, text, member) {
const channel = client.channels.get(message.channelId); const channel = client.channels.get(message.channelId);
const webhook = await wh.getOrCreateWebhook(client, channel); const webhook = await wh.getOrCreateWebhook(client, channel);
const username = member.displayname ?? member.name; const username = member.displayname ?? member.name;
if (text.length > 0 && text <= 2000) { if (text.length <= 2000) {
await webhook.send({content: text, username: username, avatar_url: member.propic}) await webhook.send({content: text, username: username, avatar_url: member.propic})
} }
else if (text.length > 2000) { else if (text.length > 2000) {
const returnedBuffer = messageHelper.returnBufferFromText(text); const returnedBuffer = messageHelper.returnBufferFromText(text);
@@ -56,7 +56,6 @@ wh.replaceMessage = async function(client, message, text, member) {
if (message.attachments.size > 0) { if (message.attachments.size > 0) {
// Not implemented yet // Not implemented yet
} }
await message.delete(); await message.delete();
} }
} }