Merge pull request 'Add Contacts to Queue in the Background to Avoid Activation Blocking' (#535) from stable-blockers into master
continuous-integration/drone/push Build is pending Details

Reviewed-on: #535
Reviewed-by: Dan Ballard <dan@openprivacy.ca>
This commit is contained in:
Sarah Jamie Lewis 2023-09-25 18:35:48 +00:00
commit 7a962359b3
1 changed files with 2 additions and 1 deletions

View File

@ -417,7 +417,8 @@ func (app *application) ConfigureConnections(onion string, listen bool, peers bo
app.eventBuses[profile.GetOnion()].Publish(event.NewEventList(event.ResumeRetries))
profile.StartConnections(peers, servers)
// do this in the background, for large contact lists it can take a long time...
go profile.StartConnections(peers, servers)
}
}