diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-12-17 14:24:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 14:24:47 +0800 |
commit | a6d4a8546a772ede0f59317eb51b9a90370cb67b (patch) | |
tree | 0437221d185ba797ee01b0965d9e015f50d47e21 /modules/notification | |
parent | d29b689f813ee83a4ec3526fbad7fb76a6958cc0 (diff) | |
download | gitea-a6d4a8546a772ede0f59317eb51b9a90370cb67b.tar.gz gitea-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, |