mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
41 lines
960 B
JavaScript
41 lines
960 B
JavaScript
const Action = require('./Action');
|
|
const Constants = require('../../util/Constants');
|
|
|
|
class MessageUpdateAction extends Action {
|
|
handle(data) {
|
|
const client = this.client;
|
|
|
|
const channel = client.channels.get(data.channel_id);
|
|
if (channel) {
|
|
const message = channel.messages.get(data.id);
|
|
if (message) {
|
|
message.patch(data);
|
|
client.emit(Constants.Events.MESSAGE_UPDATE, message._edits[0], message);
|
|
return {
|
|
old: message._edits[0],
|
|
updated: message,
|
|
};
|
|
}
|
|
|
|
return {
|
|
old: message,
|
|
updated: message,
|
|
};
|
|
}
|
|
|
|
return {
|
|
old: null,
|
|
updated: null,
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Emitted whenever a message is updated - e.g. embed or content change.
|
|
* @event Client#messageUpdate
|
|
* @param {Message} oldMessage The message before the update.
|
|
* @param {Message} newMessage The message after the update.
|
|
*/
|
|
|
|
module.exports = MessageUpdateAction;
|