forked from cwtch.im/cwtch
1
0
Fork 0

Merge branch 'peerAdd' of dan/cwtch into master

This commit is contained in:
Sarah Jamie Lewis 2019-11-05 14:33:35 -08:00 committed by Gogs
commit 87a0265142
1 changed files with 3 additions and 0 deletions

View File

@ -211,6 +211,9 @@ func (cp *cwtchPeer) GetGroupState(groupid string) connections.ConnectionState {
// PeerWithOnion is the entry point for cwtchPeer relationships
func (cp *cwtchPeer) PeerWithOnion(onion string) {
if _, exists := cp.Profile.GetContact(onion); !exists {
cp.AddContact(onion, onion, false)
}
cp.eventBus.Publish(event.NewEvent(event.PeerRequest, map[event.Field]string{event.RemotePeer: onion}))
}