fix: Voice State session id is a string, not a snowflake

This commit is contained in:
kozabrada123 2023-11-14 17:08:46 +01:00 committed by GitHub
parent 2ee421d57e
commit 2bff2cb8cf
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ pub struct VoiceState {
pub channel_id: Option<Snowflake>,
pub user_id: Snowflake,
pub member: Option<Arc<RwLock<GuildMember>>>,
pub session_id: Snowflake,
pub session_id: String,
pub token: Option<String>,
pub deaf: bool,
pub mute: bool,