Avatar downloader update

This commit is contained in:
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() { go func() {
for user := range queue { for user := range queue {
work(user) work(user)
wg.Done()
} }
}() }()
} }