mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 18:29:47 +00:00
parent
6e6c7a4ae5
commit
8aef992535
1 changed files with 3 additions and 1 deletions
|
@ -241,7 +241,9 @@ namespace Jackett.Common.Indexers
|
||||||
if (xthorResponse.torrents != null)
|
if (xthorResponse.torrents != null)
|
||||||
{
|
{
|
||||||
// Adding each torrent row to releases
|
// Adding each torrent row to releases
|
||||||
releases.AddRange(xthorResponse.torrents.Select(torrent =>
|
// Exclude hidden torrents (category 106, example => search 'yoda' in the API) #10407
|
||||||
|
releases.AddRange(xthorResponse.torrents
|
||||||
|
.Where(torrent => torrent.category != 106).Select(torrent =>
|
||||||
{
|
{
|
||||||
//issue #3847 replace multi keyword
|
//issue #3847 replace multi keyword
|
||||||
if (!string.IsNullOrEmpty(ReplaceMulti))
|
if (!string.IsNullOrEmpty(ReplaceMulti))
|
||||||
|
|
Loading…
Reference in a new issue