Delete reactions added to issues and comments when deleting repository (#4232)

This commit is contained in:
Lauris BH 2018-06-12 20:02:51 +03:00 committed by techknowlogick
parent 406031d3cc
commit 2b8c0bb5e2
1 changed files with 3 additions and 0 deletions

View File

@ -1848,6 +1848,9 @@ func DeleteRepository(doer *User, uid, repoID int64) error {
if _, err = sess.In("issue_id", issueIDs).Delete(&IssueUser{}); err != nil {
return err
}
if _, err = sess.In("issue_id", issueIDs).Delete(&Reaction{}); err != nil {
return err
}
attachments := make([]*Attachment, 0, 5)
if err = sess.