Fix `View File` button link if branch deleted on pull request files pages (#31063) (#31077)

pull/31098/head
Giteabot 8 months ago committed by GitHub
parent 7b7318255e
commit 02b947a15f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      routers/web/repo/pull.go

@ -862,7 +862,7 @@ func viewPullFiles(ctx *context.Context, specifiedStartCommit, specifiedEndCommi
}
if pull.HeadRepo != nil {
ctx.Data["SourcePath"] = pull.HeadRepo.Link() + "/src/branch/" + util.PathEscapeSegments(pull.HeadBranch)
ctx.Data["SourcePath"] = pull.HeadRepo.Link() + "/src/commit/" + endCommitID
if !pull.HasMerged && ctx.Doer != nil {
perm, err := access_model.GetUserRepoPermission(ctx, pull.HeadRepo, ctx.Doer)

Loading…
Cancel
Save