Skip to content

Commit

Permalink
fix(*): fix selfMute and selfDeaf states (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored May 16, 2022
1 parent 9357562 commit 985b8ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export class User {
this.channelId = userState.channelId;
}

this.selfMute = userState.mute;
this.selfDeaf = userState.deaf;
this.selfMute = userState.selfMute;
this.selfDeaf = userState.selfDeaf;
}

async moveToChannel(channelId: number): Promise<User> {
Expand Down

0 comments on commit 985b8ee

Please sign in to comment.