From a878a5d30673c3e308bb93a5658e04d623742a66 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Sun, 20 Dec 2015 00:12:40 -0600 Subject: [PATCH] Added comments --- wsapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsapi.go b/wsapi.go index c276f0b..3273122 100644 --- a/wsapi.go +++ b/wsapi.go @@ -489,7 +489,7 @@ func (s *Session) VoiceChannelJoin(guildID, channelID string) (err error) { func (s *Session) onVoiceStateUpdate(st VoiceState) { // Need to have this happen at login and store it in the Session - self, err := s.User("@me") + self, err := s.User("@me") // TODO: move to Login/New if err != nil { fmt.Println(err) return