Skip to content
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ These changes are available on the `master` branch, but have not yet been releas
([#3171](https://github.com/Pycord-Development/pycord/pull/3171))
- Fixed `View.from_dict()` incorrectly returning `None`.
([#3181](https://github.com/Pycord-Development/pycord/pull/3181))
- Fixed internal use of deprecated _PayloadLike dict operations.
([#3189](https://github.com/Pycord-Development/pycord/pull/3189))

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion discord/voice/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ async def voice_state_update(self, data: RawVoiceStateUpdateEvent) -> None:
await self.disconnect()
return

self.session_id = data["session_id"]
self.session_id = data.session_id

if self.state in (
ConnectionFlowState.set_guild_voice_state,
Expand Down
Loading