7dfdef46a5
[vi] cảm giác đau khổ
17 lines
562 B
JavaScript
17 lines
562 B
JavaScript
'use strict';
|
|
|
|
const { Events } = require('../../../util/Constants');
|
|
|
|
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);
|
|
}
|
|
};
|