Skip to content

Commit

Permalink
Merge pull request #110 from Erk-/model-fixes-2020-02-28
Browse files Browse the repository at this point in the history
Fix to UpdateStatus and INVITE_CREATE
  • Loading branch information
Erk- authored Feb 28, 2020
2 parents 4fbe59d + d386b65 commit 4fa4ee5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 4fa4ee5

Please sign in to comment.