diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-12-17 07:24:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 07:24:47 +0100 |
commit | a6d4a8546a772ede0f59317eb51b9a90370cb67b (patch) | |
tree | 0437221d185ba797ee01b0965d9e015f50d47e21 /modules/notification | |
parent | Ensure complexity, minlength and ispwned are checked on password setting (#18... (diff) | |
download | forgejo-a6d4a8546a772ede0f59317eb51b9a90370cb67b.tar.xz forgejo-a6d4a8546a772ede0f59317eb51b9a90370cb67b.zip |
Fix rename notification bug (#18008)
Diffstat (limited to 'modules/notification')
-rw-r--r-- | modules/notification/action/action.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/notification/action/action.go b/modules/notification/action/action.go index 376c5d103b..88395d929a 100644 --- a/modules/notification/action/action.go +++ b/modules/notification/action/action.go @@ -152,8 +152,6 @@ func (a *actionNotifier) NotifyNewPullRequest(pull *models.PullRequest, mentions } func (a *actionNotifier) NotifyRenameRepository(doer *user_model.User, repo *repo_model.Repository, oldRepoName string) { - log.Trace("action.ChangeRepositoryName: %s/%s", doer.Name, repo.Name) - if err := models.NotifyWatchers(&models.Action{ ActUserID: doer.ID, ActUser: doer, |