more on #1319
This commit is contained in:
parent
30b428bf0e
commit
a24141ec9c
4 changed files with 13 additions and 7 deletions
|
@ -108,7 +108,8 @@ func (i *Issue) IsPoster(uid int64) bool {
|
|||
func (i *Issue) GetPoster() (err error) {
|
||||
i.Poster, err = GetUserByID(i.PosterID)
|
||||
if IsErrUserNotExist(err) {
|
||||
i.Poster = &User{Name: "Someone"}
|
||||
i.PosterID = -1
|
||||
i.Poster = NewFakeUser()
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue