fix: lavalink expects snowflakes to be a string

This commit is contained in:
Christopher F 2018-08-22 20:49:33 -04:00
parent 3a9f33fc07
commit 89c44fb63c
1 changed files with 1 additions and 1 deletions

View File

@ -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"`
} }