endpoints.go consistency

pull/9/head^2
maru 2024-05-10 15:33:37 -04:00
parent 3ed5f41d58
commit b91c169b16
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D
1 changed files with 3 additions and 5 deletions

View File

@ -339,16 +339,14 @@ func handleDailySeed(w http.ResponseWriter, r *http.Request) {
httpError(w, r, err, http.StatusInternalServerError)
return
}
bytes, err := base64.StdEncoding.DecodeString(seed)
if err != nil {
httpError(w, r, err, http.StatusInternalServerError)
return
}
_, err = w.Write(bytes)
if err != nil {
httpError(w, r, err, http.StatusInternalServerError)
return
}
w.Write(bytes)
}
func handleDailyRankings(w http.ResponseWriter, r *http.Request) {