This commit is contained in:
2024-10-13 23:30:48 +02:00
parent 43efe20d8c
commit 268351f31e

View File

@@ -30,6 +30,7 @@ func Download(url string) error {
_, ongoing := ongoingDownloads[url]
if ongoing {
// return fmt.Errorf("Download %s is already ongoing", url)
Warning.Printf("Download %s is already ongoing", url)
return nil
}
ongoingDownloadsMutex.Lock()