Merge pull request #197 from m0thman/patch-1

Fix RUTor release title parsing
This commit is contained in:
KZ 2015-10-02 17:53:22 +01:00
commit e7fd955da0
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ namespace Jackett.Indexers
if (hasTorrent)
titleIndex++;
release.Title = row.Cq().Find("td:eq(" + titleIndex + ")").Text().Trim();
release.Title = row.Cq().Find("td:eq(1) a:eq(" + titleIndex + ")").Text().Trim();
if (configData.StripRussian.Value)
{
var split = release.Title.IndexOf('/');