Skip to content

Commit

Permalink
fix: Don't copy Ed's code. NEVER. Add missed client to `VoiceState.me…
Browse files Browse the repository at this point in the history
…mber`
  • Loading branch information
Damego authored Nov 3, 2022
1 parent 38273b9 commit eb0c29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interactions/ext/lavalink/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class VoiceState(ClientSerializerMixin):
guild_id: Optional[Snowflake] = field(converter=Snowflake, default=None)
channel_id: Optional[Snowflake] = field(converter=Snowflake, default=None)
user_id: Snowflake = field(converter=Snowflake)
member: Optional[Member] = field(converter=Member, default=None)
member: Optional[Member] = field(converter=Member, default=None, add_client=True)
session_id: str = field()
deaf: bool = field()
mute: bool = field()
Expand Down

0 comments on commit eb0c29b

Please sign in to comment.