Avatar downloader update

This commit is contained in:
Eduard Urbach 2017-07-08 16:19:31 +02:00
parent 3eaf1c714e
commit 220cfb5750

View File

@ -110,6 +110,7 @@ func StartWorkers(queue chan *arn.User, work func(*arn.User)) {
go func() {
for user := range queue {
work(user)
wg.Done()
}
}()
}