Cyprien
Cyprien
Hi, I'm getting `2022/10/30 12:04:09 websocket: close 4014: Disallowed intent(s).` when adding ` | discordgo.IntentMessageContent` at the end of my `s.Identify.Intents`. Tried using only `discordgo.IntentMessageContent` as the intent and I've...
> > Hi, I'm getting `2022/10/30 12:04:09 websocket: close 4014: Disallowed intent(s).` when adding ` | discordgo.IntentMessageContent` at the end of my `s.Identify.Intents`. Tried using only `discordgo.IntentMessageContent` as the intent...
Here is an updated version of the code containing [initEvent](https://developer.mozilla.org/en-US/docs/Web/API/Event/initEvent): ```js // utility functions function triggerClick(el) { const event = new MouseEvent("click", { bubbles: true, cancelable: false, }); el.dispatchEvent(event); }...