Browse Source

首页改版新功能。

Signed-off-by: zouap <zouap@pcl.ac.cn>
tags/v1.22.11.3^2
zouap 3 years ago
parent
commit
007dac6c33
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      services/repository/repository.go

+ 2
- 3
services/repository/repository.go View File

@@ -119,13 +119,12 @@ func GetRecommendRepoFromPromote(filename string) ([]map[string]interface{}, err

//resultRepo := make([]*models.Repository, 0)
for _, repoName := range result {

tmpIndex1 := strings.Index(repoName, "##")
log.Info("repoName=" + repoName + " tmpIndex1=" + fmt.Sprint(tmpIndex1) + " len(repoName)=" + fmt.Sprint(len(repoName)))
//log.Info("repoName=" + repoName + " tmpIndex1=" + fmt.Sprint(tmpIndex1) + " len(repoName)=" + fmt.Sprint(len(repoName)))
repoLabel := ""
if tmpIndex1 != -1 {
repoName := strings.Trim(repoName[0:tmpIndex1], " ")
repoLabel = strings.Trim(repoName[tmpIndex1+2:], " ")
repoName = strings.Trim(repoName[0:tmpIndex1], " ")
}
tmpIndex := strings.Index(repoName, "/")
if tmpIndex == -1 {


Loading…
Cancel
Save