Skip to content
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

Fix to UpdateStatus and INVITE_CREATE #110

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions model/src/gateway/payload/invite_create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub struct InviteCreate {
pub code: String,
pub created_at: String,
pub guild_id: GuildId,
pub inviter: PartialUser,
pub inviter: Option<PartialUser>,
pub max_age: u64,
pub max_uses: u64,
pub temporary: bool,
Expand All @@ -23,7 +23,7 @@ pub struct InviteCreate {
)]
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
pub struct PartialUser {
avatar: String,
avatar: Option<String>,
discriminator: String,
id: UserId,
username: String,
Expand Down
2 changes: 1 addition & 1 deletion model/src/gateway/payload/update_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl UpdateStatus {
) -> Self {
Self {
d: UpdateStatusInfo::new(afk, game, since, status),
op: OpCode::Identify,
op: OpCode::StatusUpdate,
}
}
}
Expand Down