Woops, broke LastSeen

This commit is contained in:
Jakob Borg 2014-09-10 11:29:01 +02:00
parent 781d63cb2a
commit f680a63a1f
1 changed files with 5 additions and 3 deletions

View File

@ -573,10 +573,12 @@ func (cf cFiler) CurrentFile(file string) protocol.FileInfo {
// ConnectedTo returns true if we are connected to the named node.
func (m *Model) ConnectedTo(nodeID protocol.NodeID) bool {
m.pmut.RLock()
if statRef, ok := m.nodeStatRefs[nodeID]; ok {
statRef.WasSeen()
}
_, ok := m.protoConn[nodeID]
if ok {
if statRef, ok := m.nodeStatRefs[nodeID]; ok {
statRef.WasSeen()
}
}
m.pmut.RUnlock()
return ok
}