Skip to content
Snippets Groups Projects
Commit 189aea42 authored by Ophestra's avatar Ophestra
Browse files

workaround

parent 22d4d894
No related branches found
No related tags found
No related merge requests found
...@@ -62,6 +62,11 @@ func handleChatInitiate(context *multiplexer.Context) { ...@@ -62,6 +62,11 @@ func handleChatInitiate(context *multiplexer.Context) {
return return
} }
// Workaround for weird bug where the event has no guild ID
if member.GuildID == "" {
member.GuildID = event.GuildID
}
// Create new instance // Create new instance
instance := newInstance(member) instance := newInstance(member)
if instance == nil { if instance == nil {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment