Fix RUTor release title parsing

This commit is contained in:
m0thman 2015-10-02 12:45:39 +03:00
parent b46b36cfd9
commit dfa91c46a9
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('/');