diff --git a/api/download/download.go b/api/download/download.go index a572a9850056da550f0ee073e522e4346df4c87d..5051c3a8dd13aa4293c3f510aa7247035d8aedbf 100644 --- a/api/download/download.go +++ b/api/download/download.go @@ -117,14 +117,14 @@ func downloadBeatmap(c *downloader.Client, b *housekeeper.CachedBeatmap, house * fCbm, errF := b.File() if errF == nil { stat, err := fCbm.Stat() + if err != nil { + goto DOWNLOAD_MAP + } defer func() { // We need to wrap this inside a function because this way the arguments // to DownloadCompleted are actually evaluated during the defer call. b.DownloadCompleted(uint64(stat.Size()), house) }() - if err != nil { - goto DOWNLOAD_MAP - } // FILE EXISTS! log.Println("[⬇️][👌] Map found in cache, no need to download!", b.String())