Fixed errcheck linter complaints

This commit is contained in:
2019-06-05 15:45:54 +09:00
parent 190a85fe08
commit 940e949a30
15 changed files with 112 additions and 33 deletions

View File

@ -23,6 +23,5 @@ func Download(ctx aero.Context) error {
return ctx.Error(http.StatusNotFound, "Track not found", err)
}
track.Download()
return nil
return track.Download()
}