Browse Source

table `pull_request` wasn't updated correctly (#2649)

* Fix: table `pull_request` won't be updated correctly

* Update also status column when manually merged
tags/v1.3.0-rc1
Kazuki Sawada 6 years ago
parent
commit
ffab139c91
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      models/pull.go

+ 1
- 1
models/pull.go View File

@@ -422,7 +422,7 @@ func (pr *PullRequest) setMerged() (err error) {
if err = pr.Issue.changeStatus(sess, pr.Merger, pr.Issue.Repo, true); err != nil {
return fmt.Errorf("Issue.changeStatus: %v", err)
}
if _, err = sess.ID(pr.ID).Cols("has_merged").Update(pr); err != nil {
if _, err = sess.ID(pr.ID).Cols("has_merged, status, merged_commit_id, merger_id, merged_unix").Update(pr); err != nil {
return fmt.Errorf("update pull request: %v", err)
}


Loading…
Cancel
Save