Files
discord.js-selfbot/src/client/websocket/handlers/THREAD_UPDATE.js

17 lines
562 B
JavaScript
Raw Normal View History

2022-03-19 17:37:45 +07:00
'use strict';
const { Events } = require('../../../util/Constants');
2022-03-19 17:37:45 +07:00
module.exports = (client, packet) => {
const { old, updated } = client.actions.ChannelUpdate.handle(packet.d);
if (old && updated) {
/**
* Emitted whenever a thread is updated - e.g. name change, archive state change, locked state change.
* @event Client#threadUpdate
* @param {ThreadChannel} oldThread The thread before the update
* @param {ThreadChannel} newThread The thread after the update
*/
client.emit(Events.THREAD_UPDATE, old, updated);
2022-03-19 17:37:45 +07:00
}
};