Browse Source

Fix only updated_unix when adding a comment (#3855)

tags/v1.5.0-dev
kolaente 6 years ago
parent
commit
fd8d6405c8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      models/issue_comment.go

+ 1
- 1
models/issue_comment.go View File

} }


// update the issue's updated_unix column // update the issue's updated_unix column
if err = updateIssueCols(e, opts.Issue); err != nil {
if err = updateIssueCols(e, opts.Issue, "updated_unix"); err != nil {
return nil, err return nil, err
} }



Loading…
Cancel
Save