#applied Tags

1 messages · Page 1 of 1 (latest)

thick cave

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