Fix crash when user edits a DM after the thread is closed
parent
82a89b6e86
commit
777ea2dd2c
|
@ -110,8 +110,9 @@ bot.on('messageUpdate', async (msg, oldMessage) => {
|
||||||
// 1) Edit in DMs
|
// 1) Edit in DMs
|
||||||
if (msg.channel instanceof Eris.PrivateChannel) {
|
if (msg.channel instanceof Eris.PrivateChannel) {
|
||||||
const thread = await threads.findOpenThreadByUserId(msg.author.id);
|
const thread = await threads.findOpenThreadByUserId(msg.author.id);
|
||||||
const editMessage = utils.disableLinkPreviews(`**The user edited their message:**\n\`B:\` ${oldContent}\n\`A:\` ${newContent}`);
|
if (! thread) return;
|
||||||
|
|
||||||
|
const editMessage = utils.disableLinkPreviews(`**The user edited their message:**\n\`B:\` ${oldContent}\n\`A:\` ${newContent}`);
|
||||||
thread.postSystemMessage(editMessage);
|
thread.postSystemMessage(editMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue