We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note the following case: {"name":"👍","id":null}
{"name":"👍","id":null}
The id is set to null, since the name contains a unicode emoji
null
This can (sometimes) cause deserialization errors:
07:40:41 [WARN] Failed to parse gateway event MESSAGE_REACTION_ADD (invalid type: null, expected snowflake string at line 1 column 716)
07:39:36 [WARN] Failed to parse gateway event READY_SUPPLEMENTAL (missing field id at line 1 column 5849)
(Here the emoji was in a user's custom status: {"name":"🤔"})
{"name":"🤔"}
Note: fixing this requires a custom Updateable id() impl on Emoji, potentially generating a Snowflake id from the name
Updateable id()
Emoji
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note the following case:
{"name":"👍","id":null}
The id is set to
null
, since the name contains a unicode emojiThis can (sometimes) cause deserialization errors:
07:40:41 [WARN] Failed to parse gateway event MESSAGE_REACTION_ADD (invalid type: null, expected snowflake string at line 1 column 716)
07:39:36 [WARN] Failed to parse gateway event READY_SUPPLEMENTAL (missing field id at line 1 column 5849)
(Here the emoji was in a user's custom status:
{"name":"🤔"}
)Note: fixing this requires a custom
Updateable id()
impl onEmoji
, potentially generating a Snowflake id from the nameThe text was updated successfully, but these errors were encountered: