1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-02 01:15:48 +00:00

Fix err not being nil

This commit is contained in:
Flare 2016-11-09 13:07:01 +08:00
parent fd6be0d17e
commit a6c487f6ca
No known key found for this signature in database
GPG Key ID: 762EE3D369C1A772

View File

@ -99,6 +99,7 @@ func (issue *Issue) loadAttributes(e Engine) (err error) {
if !IsErrUserNotExist(err) { if !IsErrUserNotExist(err) {
return fmt.Errorf("getUserByID.(poster) [%d]: %v", issue.PosterID, err) return fmt.Errorf("getUserByID.(poster) [%d]: %v", issue.PosterID, err)
} }
err = nil
return return
} }
} }