Fix RUTor release title parsing

This commit is contained in:
m0thman
2015-10-02 12:45:39 +03:00
parent 301cdc6c37
commit 179a02c533

View File

@@ -181,7 +181,7 @@ namespace Jackett.Indexers
if (hasTorrent) if (hasTorrent)
titleIndex++; 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) if (configData.StripRussian.Value)
{ {
var split = release.Title.IndexOf('/'); var split = release.Title.IndexOf('/');