Merge pull request #394 from jfurrow/bug/fix-tracker-filtering

Fix tracker filtering
This commit is contained in:
John Furrow
2017-07-01 21:51:33 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export function filterTorrents(torrentList, opts) {
});
} else if (type === 'tracker') {
return torrentList.filter((torrent) => {
return torrent.trackers.includes(filter);
return torrent.trackerURIs.includes(filter);
});
} else if (type === 'tag') {
return torrentList.filter((torrent) => {
+1 -1
View File
File diff suppressed because one or more lines are too long