Use correct Sender on webhook change title (#17791)

As title, thanks to @mscherer for pointing out the incorrect code.
forgejo
Gusted 3 years ago committed by GitHub
parent 3d996c85a5
commit 21f4401f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -214,7 +214,7 @@ func (m *webhookNotifier) NotifyIssueChangeTitle(doer *models.User, issue *model
}, },
Issue: convert.ToAPIIssue(issue), Issue: convert.ToAPIIssue(issue),
Repository: convert.ToRepo(issue.Repo, mode), Repository: convert.ToRepo(issue.Repo, mode),
Sender: convert.ToUser(issue.Poster, nil), Sender: convert.ToUser(doer, nil),
}) })
} }

Loading…
Cancel
Save