fix: lavalink expects snowflakes to be a string
This commit is contained in:
parent
3a9f33fc07
commit
89c44fb63c
2
model.go
2
model.go
|
@ -93,7 +93,7 @@ type state struct {
|
||||||
|
|
||||||
// VoiceServerUpdate is a raw Discord VOICE_SERVER_UPDATE event
|
// VoiceServerUpdate is a raw Discord VOICE_SERVER_UPDATE event
|
||||||
type VoiceServerUpdate struct {
|
type VoiceServerUpdate struct {
|
||||||
GuildID int `json:"guild_id"`
|
GuildID string `json:"guild_id"`
|
||||||
Endpoint string `json:"endpoint"`
|
Endpoint string `json:"endpoint"`
|
||||||
Token string `json:"token"`
|
Token string `json:"token"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue