mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
parent
c30a8656f5
commit
ff3f3b9765
1 changed files with 3 additions and 2 deletions
|
@ -221,7 +221,8 @@ namespace Jackett.Common.Indexers
|
|||
|
||||
foreach (var torrent in json)
|
||||
{
|
||||
if ((!query.IsImdbQuery || !TorznabCaps.SupportsImdbMovieSearch) && !query.MatchQueryStringAND(torrent.name))
|
||||
var title = (string)torrent.name;
|
||||
if ((!query.IsImdbQuery || !TorznabCaps.SupportsImdbMovieSearch) && !query.MatchQueryStringAND(title))
|
||||
continue;
|
||||
var torrentID = (long)torrent.t;
|
||||
var comments = new Uri(SiteLink + "details.php?id=" + torrentID);
|
||||
|
@ -233,7 +234,7 @@ namespace Jackett.Common.Indexers
|
|||
var imdb = ParseUtil.GetImdbID(imdbId);
|
||||
var release = new ReleaseInfo
|
||||
{
|
||||
Title = torrent.name,
|
||||
Title = title,
|
||||
MinimumRatio = 1,
|
||||
MinimumSeedTime = 172800, // 48 hours
|
||||
Category = MapTrackerCatToNewznab(torrent.c.ToString()),
|
||||
|
|
Loading…
Reference in a new issue