Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fixed possible whitespace in hashes

Fixed possible whitespace in hashes when uploading by magnet url when
lagnet url have a hash with whitespace
Cette révision appartient à :
akuma06 2017-06-18 03:26:46 +02:00
Parent 0bf5863c35
révision f31d884f6a

Voir le fichier

@ -179,7 +179,7 @@ func (r *TorrentRequest) validateMagnet() error {
return ErrMagnet
}
xt = strings.SplitAfter(xt, ":")[2]
r.Infohash = strings.ToUpper(strings.Split(xt, "&")[0])
r.Infohash = strings.TrimSpace(strings.ToUpper(strings.Split(xt, "&")[0]))
return nil
}