mirror of https://github.com/go-gitea/gitea.git
fix forgot deletion of notification when delete repository (#5506)
This commit is contained in:
parent
928417ae39
commit
1b3404eaca
|
@ -1771,6 +1771,7 @@ func DeleteRepository(doer *User, uid, repoID int64) error {
|
||||||
&RepoRedirect{RedirectRepoID: repoID},
|
&RepoRedirect{RedirectRepoID: repoID},
|
||||||
&Webhook{RepoID: repoID},
|
&Webhook{RepoID: repoID},
|
||||||
&HookTask{RepoID: repoID},
|
&HookTask{RepoID: repoID},
|
||||||
|
&Notification{RepoID: repoID},
|
||||||
); err != nil {
|
); err != nil {
|
||||||
return fmt.Errorf("deleteBeans: %v", err)
|
return fmt.Errorf("deleteBeans: %v", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue