1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-06-13 21:31:15 +00:00

State: Fixed individual message fetch missing GuildID

This commit is contained in:
diamondburned 2020-07-17 11:35:44 -07:00
parent d18298aca9
commit 1c8aaaefcc

View file

@ -508,6 +508,7 @@ func (s *State) Message(channelID, messageID discord.Snowflake) (*discord.Messag
}
m.ChannelID = c.ID
m.GuildID = c.GuildID
return m, s.Store.MessageSet(m)
}