From 3f44844244dd5e6329bbfaf29a3d5b4b244ab84f Mon Sep 17 00:00:00 2001 From: Giteabot Date: Sun, 16 Jun 2024 20:55:14 +0800 Subject: [PATCH] Allow downloading attachments of draft releases (#31369) (#31380) Backport #31369 by Zettat123 Fix #31362 Co-authored-by: Zettat123 --- routers/web/repo/repo.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/routers/web/repo/repo.go b/routers/web/repo/repo.go index f54b35c3e0..c1eda8b674 100644 --- a/routers/web/repo/repo.go +++ b/routers/web/repo/repo.go @@ -418,8 +418,9 @@ func RedirectDownload(ctx *context.Context) { tagNames := []string{vTag} curRepo := ctx.Repo.Repository releases, err := db.Find[repo_model.Release](ctx, repo_model.FindReleasesOptions{ - RepoID: curRepo.ID, - TagNames: tagNames, + IncludeDrafts: ctx.Repo.CanWrite(unit.TypeReleases), + RepoID: curRepo.ID, + TagNames: tagNames, }) if err != nil { ctx.ServerError("RedirectDownload", err)