16
20
Fork 16

Fixing unitialized map

Dieser Commit ist enthalten in:
Sarah Jamie Lewis 2019-02-05 10:58:14 -08:00
Ursprung 58535b0eb6
Commit 84a10a9f5e
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -284,6 +284,7 @@ func (p *Profile) ProcessInvite(gci *protocol.GroupChatInvite, peerHostname stri
group.InitialMessage = gci.GetInitialMessage()[:]
group.Accepted = false
group.Owner = peerHostname
group.Attributes = make(map[string]string)
p.AddGroup(group)
}