fix delete comment bug (#4216) (#4228)

release/v1.4
Lunny Xiao 6 years ago committed by Lauris BH
parent 1ff480baa6
commit f10640433f

@ -132,6 +132,10 @@ func (c *Comment) AfterLoad(session *xorm.Session) {
// AfterDelete is invoked from XORM after the object is deleted.
func (c *Comment) AfterDelete() {
if c.ID <= 0 {
return
}
_, err := DeleteAttachmentsByComment(c.ID, true)
if err != nil {

Loading…
Cancel
Save