remove double escape

This commit is contained in:
YouROK
2020-05-27 11:02:00 +03:00
parent afce7ca857
commit 3dd7c4d49a

View File

@@ -21,8 +21,6 @@ func MakeM3ULists(torrents []*settings.Torrent, host string) string {
mag.Trackers = []string{} //Remove retrackers for small link size
magnet = mag.String()
}
magnet = url.QueryEscape(magnet)
m3u += host + "/torrent/play?link=" + url.QueryEscape(magnet) + "&m3u=true\n\n"
}
return m3u