diff --git a/peer/cwtch_peer.go b/peer/cwtch_peer.go index d5a9321..525f363 100644 --- a/peer/cwtch_peer.go +++ b/peer/cwtch_peer.go @@ -1055,17 +1055,16 @@ func (cp *cwtchPeer) getConnectionsSortedByLastSeen(doPeers, doServers bool) []* byRecent := []*LastSeenConversation{} for _, conversation := range conversations { - if conversation.Accepted && !conversation.IsGroup() { + if !conversation.IsGroup() { if conversation.IsServer() { if !doServers { continue } } else { - if !doPeers { + if !doPeers || !conversation.Accepted { continue } } - byRecent = append(byRecent, &LastSeenConversation{conversation, cp.GetConversationLastSeenTime(conversation.ID)}) } }