Fixing unitialized map

Este commit está contenido en:
Sarah Jamie Lewis 2019-02-05 10:58:14 -08:00
padre 58535b0eb6
commit 84a10a9f5e
Se han modificado 1 ficheros con 1 adiciones y 0 borrados

Ver fichero

@ -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)
}