mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix only updated_unix when adding a comment (#3855)
This commit is contained in:
parent
c3f2b8803f
commit
fd8d6405c8
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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…
Reference in a new issue