1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix wrong identify poster on a migrated pull request when submi… (#9827) (#9830)

This commit is contained in:
Lunny Xiao
2020-01-17 20:38:11 +08:00
committed by Antoine GIRARD
parent f766719895
commit 69a2a29c33
2 changed files with 2 additions and 2 deletions

View File

@@ -438,7 +438,7 @@ func (issue *Issue) HashTag() string {
// IsPoster returns true if given user by ID is the poster.
func (issue *Issue) IsPoster(uid int64) bool {
return issue.PosterID == uid
return issue.OriginalAuthorID == 0 && issue.PosterID == uid
}
func (issue *Issue) hasLabel(e Engine, labelID int64) bool {