Skip to content

Commit

Permalink
change refereeLikesLen
Browse files Browse the repository at this point in the history
  • Loading branch information
oxmmty committed Oct 3, 2024
1 parent a95291d commit c03bb0a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions routes/admin_referrals.go
Original file line number Diff line number Diff line change
Expand Up @@ -977,10 +977,8 @@ func (fes *APIServer) AdminDownloadRefereeCSV(ww http.ResponseWriter, req *http.
// nextRow = append(nextRow, string(referralHashBytes))
// nextRow = append(nextRow, lib.PkToString(lib.PKIDToPublicKey(referrerPKID), fes.Params))
// nextRow = append(nextRow, referrerUsernameStr)
// nextRow = append(nextRow, lib.PkToString(lib.PKIDToPublicKey(refereePKID), fes.Params))
// nextRow = append(nextRow, refereeUsernameStr)
nextRow = append(nextRow, strconv.FormatInt(refereePostsLen, 10))
nextRow = append(nextRow, strconv.FormatInt(refereeLikesLen, 10))
// nextRow = append(nextRow, strconv.FormatInt(refereePostsLen, 10))
// nextRow = append(nextRow, strconv.FormatInt(refereeLikesLen, 10))
nextRow = append(nextRow, strconv.FormatInt(refereeDiamondsLen, 10))
if refereePostsLen > 0 {
oldestRefereePost := refereePostEntries[len(refereePostEntries)-1]
Expand Down

0 comments on commit c03bb0a

Please sign in to comment.