[Fix] Client bug (#623)

If you don't delete this property for some reasons after you send a message in a guild, your roles will be removed (client sided) for everyone, this fixes it.
This commit is contained in:
ImAaronFR 2022-02-09 09:52:27 +03:30 committed by GitHub
parent 896d3672f4
commit 385bdfdff4

View File

@ -219,7 +219,10 @@ router.post(
})
);
}
//Fix for the client bug
delete message.member
await Promise.all([
message.save(),
emitEvent({ event: "MESSAGE_CREATE", channel_id: channel_id, data: message } as MessageCreateEvent),