#Fetching Message gives TypeError thrown in ReactionUserManager._add
1 messages · Page 1 of 1 (latest)
Yes, its a string
I have compared the values to the actual messages they represent, they indeed should qualify. The channel fetches successfully as well
channel.messages.fetch exists, it returns a promise
I store them in the Database as a union of the channel id and the message id:
`${msg.channel.id}/${msg.id}`
they are parsed like so:
const [chnlID, msgID] = idUnion.split('/');
Figured it out, i didnt wait before the client was ready 🤦