| @@ -887,14 +887,17 @@ func getBonusWeekDataMap() map[int64][]int { | |||||
| if err == nil { | if err == nil { | ||||
| filenames := strings.Split(content, "\n") | filenames := strings.Split(content, "\n") | ||||
| for i := 0; i < len(filenames); i++ { | for i := 0; i < len(filenames); i++ { | ||||
| if strings.HasSuffix(filenames[i], "\r") { | |||||
| filenames[i] = filenames[i][0 : len(filenames[i])-len("\r")] | |||||
| } | |||||
| url = setting.RecommentRepoAddr + "bonus/weekdata/" + filenames[i] | url = setting.RecommentRepoAddr + "bonus/weekdata/" + filenames[i] | ||||
| csvContent, err1 := GetContentFromPromote(url) | csvContent, err1 := GetContentFromPromote(url) | ||||
| if err1 == nil { | if err1 == nil { | ||||
| //read csv | //read csv | ||||
| lines := strings.Split(csvContent, "\n") | lines := strings.Split(csvContent, "\n") | ||||
| for j := 1; j < len(lines); j++ { | for j := 1; j < len(lines); j++ { | ||||
| if strings.HasSuffix(lines[j], "\01503d") { | |||||
| lines[j] = lines[j][0 : len(lines[j])-len("\01503d")] | |||||
| if strings.HasSuffix(lines[j], "\r") { | |||||
| lines[j] = lines[j][0 : len(lines[j])-len("\r")] | |||||
| } | } | ||||
| log.Info("aLine=" + lines[j]) | log.Info("aLine=" + lines[j]) | ||||
| aLine := strings.Split(lines[j], ",") | aLine := strings.Split(lines[j], ",") | ||||