diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-01-17 18:23:46 +0800 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2020-01-17 11:23:46 +0100 |
commit | 088759f180176dab8af98694a6efbac1c5a867fc (patch) | |
tree | 68342d4271eacf041f2e50d46563dfa606f0a38b /models | |
parent | 3c07d03c0388d3b86138572401281b51f2db9282 (diff) | |
download | gitea-088759f180176dab8af98694a6efbac1c5a867fc.tar.gz gitea-088759f180176dab8af98694a6efbac1c5a867fc.zip |
Fix wrong identify poster on a migrated pull request when submi… (#9827)
Diffstat (limited to 'models')
-rw-r--r-- | models/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go index 1c6b930d2e..7976366058 100644 --- a/models/issue.go +++ b/models/issue.go @@ -440,7 +440,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 { |