mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 21:29:12 +01:00
fix bug forget to remove Stopwatch when remove repository (#4928)
This commit is contained in:
parent
126ba796dc
commit
f98040ad50
1 changed files with 3 additions and 0 deletions
|
@ -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 a new issue