mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 17:25:54 +01:00
fix bug forget to remove Stopwatch when remove repository (#4928)
This commit is contained in:
parent
126ba796dc
commit
f98040ad50
@ -1856,6 +1856,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.
|
||||
|
Loading…
Reference in New Issue
Block a user