Переглянути джерело

Enable switching to a different source branch when PR already exists (#7819)

Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
tags/v1.10.0-rc1
Mario Lubenka 4 роки тому
джерело
коміт
8bfeb85f93
1 змінених файлів з 7 додано та 7 видалено
  1. 7
    7
      routers/repo/compare.go

+ 7
- 7
routers/repo/compare.go Переглянути файл

@@ -292,6 +292,13 @@ func CompareDiff(ctx *context.Context) {
}

if ctx.Data["PageIsComparePull"] == true {
headBranches, err := headGitRepo.GetBranches()
if err != nil {
ctx.ServerError("GetBranches", err)
return
}
ctx.Data["HeadBranches"] = headBranches

pr, err := models.GetUnmergedPullRequest(headRepo.ID, ctx.Repo.Repository.ID, headBranch, baseBranch)
if err != nil {
if !models.IsErrPullRequestNotExist(err) {
@@ -312,13 +319,6 @@ func CompareDiff(ctx *context.Context) {
return
}
}

headBranches, err := headGitRepo.GetBranches()
if err != nil {
ctx.ServerError("GetBranches", err)
return
}
ctx.Data["HeadBranches"] = headBranches
}
beforeCommitID := ctx.Data["BeforeCommitID"].(string)
afterCommitID := ctx.Data["AfterCommitID"].(string)

Завантаження…
Відмінити
Зберегти