chore: go fixes

This commit is contained in:
2026-05-08 09:28:30 +02:00
parent ccc40d8d9d
commit 334b05c6e0

View File

@@ -156,13 +156,11 @@ func (w *Worker) syncRelations(ctx context.Context) {
var wg sync.WaitGroup
for range workerCount {
wg.Add(1)
go func() {
defer wg.Done()
wg.Go(func() {
for a := range jobs {
w.syncSingleAnime(ctx, a.ID)
}
}()
})
}
for _, a := range animes {