mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
Still print error if user does not exist
This commit is contained in:
parent
1b59e6f910
commit
fd6be0d17e
@ -96,6 +96,10 @@ func (issue *Issue) loadAttributes(e Engine) (err error) {
|
||||
if err != nil {
|
||||
issue.PosterID = -1
|
||||
issue.Poster = NewGhostUser()
|
||||
if !IsErrUserNotExist(err) {
|
||||
return fmt.Errorf("getUserByID.(poster) [%d]: %v", issue.PosterID, err)
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user