-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
Add Message.thread #930
base: main
Are you sure you want to change the base?
Add Message.thread #930
Conversation
That's a new one |
@@ -371,6 +371,7 @@ public data class DiscordPartialMessage( | |||
@SerialName("referenced_message") | |||
val referencedMessage: Optional<DiscordMessage?> = Optional.Missing(), | |||
val interaction: Optional<DiscordMessageInteraction> = Optional.Missing(), | |||
val thread: Optional<DiscordChannel> = Optional.Missing(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why in DiscordPartialMessage
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IDK do we have a description how partial a partial message is?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IDK do we have a description how partial a partial message is?
not that i'm aware of. i was more wondering about why it isn't in DiscordMessage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a really good question
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is ;)
val thread: Optional<DiscordChannel> = Optional.Missing(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops xD
Co-authored-by: Luca Kellermann <[email protected]>
No description provided.