Skip to content

Commit

Permalink
Merge pull request #2 from oxmmty/dev
Browse files Browse the repository at this point in the history
change referrerUsernameStr
  • Loading branch information
oxmmty authored Oct 3, 2024
2 parents 339bcc5 + 9fbeb6d commit 6dc367d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/admin_referrals.go
Original file line number Diff line number Diff line change
Expand Up @@ -975,8 +975,8 @@ func (fes *APIServer) AdminDownloadRefereeCSV(ww http.ResponseWriter, req *http.
// Assemble the row.
nextRow := []string{}
// 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(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))
Expand Down

0 comments on commit 6dc367d

Please sign in to comment.