File Sharing MVP #384

Merged
sarah merged 52 commits from filesharing into master 2021-09-30 00:57:14 +00:00
2 changed files with 6 additions and 7 deletions
Showing only changes of commit 963b99b5e6 - Show all commits

View File

@ -263,7 +263,7 @@ func (e *engine) createPeerTemplate() *PeerApp {
val, ok := e.getValRequests.Load(hostname + key)
if ok {
valStr := val.(string)
return valStr, false
return valStr, true
}
return "", false
}

View File

@ -124,4 +124,3 @@ func (pa *PeerApp) SendMessage(message model2.PeerMessage) error {
}
return err
}