Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Don't convert hashes to base16

Cette révision appartient à :
Eliot Whalan 2017-05-23 10:06:55 +10:00
Parent 70127702e9
révision 991ed4178e
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: C0A42175139840D6

Voir le fichier

@ -210,17 +210,7 @@ func (f *UploadForm) ExtractInfo(r *http.Request) error {
if !isBase16 {
return errors.New("Incorrect hash")
}
} else {
//convert to base16
data, err := base32.StdEncoding.DecodeString(f.Infohash)
if err != nil {
return err
}
hash16 := make([]byte, hex.EncodedLen(len(data)))
hex.Encode(hash16, data)
f.Infohash = strings.ToUpper(string(hash16))
}
f.Filesize = 0
f.Filepath = ""
}