Skip to content

Commit

Permalink
DiscordVoiceState.member uses incorrect serial name (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
viztea authored Jan 31, 2024
1 parent 909045b commit 58a2ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/commonMain/kotlin/entity/DiscordGuild.kt
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public data class DiscordVoiceState(
@SerialName("guild_id") val guildId: OptionalSnowflake = OptionalSnowflake.Missing,
@SerialName("channel_id") val channelId: Snowflake?,
@SerialName("user_id") val userId: Snowflake,
@SerialName("guild_member") val member: Optional<DiscordGuildMember> = Optional.Missing(),
val member: Optional<DiscordGuildMember> = Optional.Missing(),
@SerialName("session_id") val sessionId: String,
val deaf: Boolean,
val mute: Boolean,
Expand Down

0 comments on commit 58a2ba0

Please sign in to comment.