Fixing unitialized map

このコミットが含まれているのは:
Sarah Jamie Lewis 2019-02-05 10:58:14 -08:00
コミット 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)
}