From 52050b2c07d2a7ab5eb3b8aec67814465b735583 Mon Sep 17 00:00:00 2001 From: kilo Date: Thu, 16 Nov 2017 20:00:54 +0100 Subject: [PATCH] fix travis --- controllers/torrent/stats.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/torrent/stats.go b/controllers/torrent/stats.go index af8bdff1..937f6899 100644 --- a/controllers/torrent/stats.go +++ b/controllers/torrent/stats.go @@ -163,7 +163,7 @@ func GetTorrentTrackers(torrent *models.Torrent) []string { for _, tracker := range config.Get().Torrents.Trackers.Default { if !contains(Trackers, tracker) && strings.HasPrefix(tracker, "udp") { - Trackers = append(Trackers, line) + Trackers = append(Trackers, tracker) } } return Trackers