Fixing unitialized map

This commit is contained in:
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)
}