so im trying to make my bot send a message when a certain tag is applied to a thread
client.on(Events.ThreadUpdate, async (oldThread, newThread, channel) => {
console.log(newThread.appliedTags)
if (newThread.appliedTags === '1107649018902884393') channel.send({ content: 'working', ephemeral: true})
})```
the tags get logged but nothing gets sent to the channel