Browse Source

Fixed unexported "mute" in Members

Bruce Marriner 9 years ago
parent
commit
aba292d922
1 changed files with 1 additions and 1 deletions
  1. 1 1
      guild.go

+ 1 - 1
guild.go

@@ -51,7 +51,7 @@ type Member struct {
 	GuildId  string   `json:"guild_id"`
 	JoinedAt string   `json:"joined_at"`
 	Deaf     bool     `json:"deaf"`
-	mute     bool     `json:"mute"`
+	Mute     bool     `json:"mute"`
 	User     User     `json:"user"`
 	Roles    []string `json:"roles"`
 }