Fix search functionality, unzlib won't be needed in the future
Cette révision appartient à :
Parent
dcccb7ee1b
révision
19efd94979
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -75,7 +75,7 @@ type TorrentsJson struct {
|
||||||
func (t *Torrents) ToJson() TorrentsJson {
|
func (t *Torrents) ToJson() TorrentsJson {
|
||||||
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + config.Trackers
|
magnet := "magnet:?xt=urn:btih:" + strings.TrimSpace(t.Hash) + "&dn=" + t.Name + config.Trackers
|
||||||
b := []CommentsJson{}
|
b := []CommentsJson{}
|
||||||
_ = json.Unmarshal([]byte(util.UnZlib(t.Comments)), &b)
|
_ = json.Unmarshal([]byte(t.Comments), &b)
|
||||||
res := TorrentsJson{
|
res := TorrentsJson{
|
||||||
Id: strconv.Itoa(t.Id),
|
Id: strconv.Itoa(t.Id),
|
||||||
Name: html.UnescapeString(t.Name),
|
Name: html.UnescapeString(t.Name),
|
||||||
|
|
Référencer dans un nouveau ticket