Fixing unitialized map

这个提交包含在:
Sarah Jamie Lewis 2019-02-05 10:58:14 -08:00
父节点 58535b0eb6
当前提交 84a10a9f5e
共有 1 个文件被更改,包括 1 次插入0 次删除

查看文件

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