1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-11 12:08:21 +00:00

fix bug forget to remove Stopwatch when remove repository (#4933)

fix bug forget to remove Stopwatch when remove repository
This commit is contained in:
linweijie2012
2018-09-14 16:09:25 +08:00
committed by Lunny Xiao
parent c145cb745b
commit 1e51307466

View File

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