mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-04 22:48:47 +03:00
Fix only updated_unix when adding a comment (#3855)
This commit is contained in:
@ -418,7 +418,7 @@ func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err
|
||||
}
|
||||
|
||||
// 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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user