Ver Fonte

Fix channels inside a guild from GUILD_CREATE having a null GuildID

andrei há 8 anos atrás
pai
commit
7e7887a936
1 ficheiros alterados com 5 adições e 0 exclusões
  1. 5 0
      state.go

+ 5 - 0
state.go

@@ -73,6 +73,11 @@ func (s *State) GuildAdd(guild *Guild) error {
 		}
 	}
 
+	// Otherwise, update the channels to point to the right guild
+	for _, c := range guild.Channels {
+		c.GuildID = guild.ID
+	}
+
 	s.Guilds = append(s.Guilds, guild)
 	return nil
 }