This commit is contained in:
Unknwon 2015-08-15 02:54:39 +08:00
parent 30b428bf0e
commit a24141ec9c
4 changed files with 13 additions and 7 deletions

View file

@ -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