5 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!Are those ids really all ending with a 0?
That looks suspiciously like rounding errors, which would explain why mentioning the users fails.
hmm let me check
you're right.. my id is 199347376874323968
I guess some incrementing is happening on the ids 🤣
hmm some have also decremented
like 222417559352377344 has become 222417559352377340
weird
That’s likely because they are somewhere converted to a number (maybe in your db driver). Try investigating how to save them as bigints without the number conversion, or just save them as text.
Yeah, it's to do with precision because the number is too big
string seems to be the way
sneaky