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

This commit is contained in:
Lunny Xiao 2018-06-12 18:39:37 +08:00 committed by Lauris BH
parent 1ff480baa6
commit f10640433f

View File

@ -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 {