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 à :
Parent
0bf5863c35
révision
f31d884f6a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -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
|
||||
}
|
||||
|
|
Référencer dans un nouveau ticket