Browse Source

Merge branch 'V202108' into fix-92

tags/v1.21.8^2
zhoupzh 4 years ago
parent
commit
9e19a812f9
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      routers/repo/view.go

+ 3
- 0
routers/repo/view.go View File

@@ -590,6 +590,9 @@ func Home(ctx *context.Context) {
if err == nil && contributors != nil {
var contributorInfos []*ContributorInfo
for _, c := range contributors {
if strings.Compare(c.Email,"") == 0 {
continue
}
// get user info from committer email
user, err := models.GetUserByEmail(c.Email)
if err == nil {


Loading…
Cancel
Save