🧱 Chunk is a download manager for slow and unstable servers
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix data race

+1 -2
+1 -2
downloader.go
··· 293 293 ch <- s 294 294 return 295 295 } 296 - atomic.AddInt64(&downloadedBytes, c.size()) 297 - s.DownloadedFileBytes = downloadedBytes 296 + s.DownloadedFileBytes = atomic.AddInt64(&downloadedBytes, c.size()) 298 297 ch <- s 299 298 }(c, idx, s) 300 299 }