Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fix search functionality, unzlib won't be needed in the future

Cette révision appartient à :
tomleb 2017-05-06 12:58:05 -04:00
Parent cb2702630c
révision 6fa3113c73

Voir le fichier

@ -75,7 +75,7 @@ type TorrentsJson struct {
func (t *Torrents) ToJson() TorrentsJson {
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + config.Trackers
b := []CommentsJson{}
_ = json.Unmarshal([]byte(util.UnZlib(t.Comments)), &b)
_ = json.Unmarshal([]byte(t.Comments), &b)
res := TorrentsJson{
Id: strconv.Itoa(t.Id),
Name: html.UnescapeString(t.Name),