Add Contacts to Queue in the Background to Avoid Activation Blocking #535

Merged
sarah merged 1 commits from stable-blockers into master 2023-09-25 18:35:49 +00:00
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)
}
}