20250225版本 #9

Merged
xxq250 merged 65 commits from develop into master 2025-02-25 11:05:19 +08:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit c4829333a8 - Show all commits

View File

@ -119,7 +119,7 @@ func GetRepoContributorsNew(repo *gitea_git.Repository, page, pageSize int) (int
return err
}
name := l[strings.Index(l, "\t")+1 : strings.Index(l, " <")]
email := l[strings.Index(l, "<")+1 : strings.Index(l, ">")]
email := strings.ToLower(l[strings.Index(l, "<")+1 : strings.Index(l, ">")])
totalContributions += commitsInt
// committer is not system user
if existedContributorInfo, ok := contributorInfoHash[email]; ok {