mirror of
https://github.com/go-gitea/gitea
synced 2024-11-24 21:22:49 +01:00
Backport #31369 by Zettat123 Fix #31362 Co-authored-by: Zettat123 <zettat123@gmail.com>
This commit is contained in:
parent
52925e9c7c
commit
3f44844244
1 changed files with 3 additions and 2 deletions
|
@ -418,8 +418,9 @@ func RedirectDownload(ctx *context.Context) {
|
||||||
tagNames := []string{vTag}
|
tagNames := []string{vTag}
|
||||||
curRepo := ctx.Repo.Repository
|
curRepo := ctx.Repo.Repository
|
||||||
releases, err := db.Find[repo_model.Release](ctx, repo_model.FindReleasesOptions{
|
releases, err := db.Find[repo_model.Release](ctx, repo_model.FindReleasesOptions{
|
||||||
RepoID: curRepo.ID,
|
IncludeDrafts: ctx.Repo.CanWrite(unit.TypeReleases),
|
||||||
TagNames: tagNames,
|
RepoID: curRepo.ID,
|
||||||
|
TagNames: tagNames,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("RedirectDownload", err)
|
ctx.ServerError("RedirectDownload", err)
|
||||||
|
|
Loading…
Reference in a new issue