Fix search functionality, unzlib won't be needed in the future
Cette révision appartient à :
Parent
cb2702630c
révision
6fa3113c73
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -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),
|
||||
|
|
Référencer dans un nouveau ticket