mirror of https://github.com/Jackett/Jackett
TehConnection: Generate title for releases without scene title
This commit is contained in:
parent
e56ff204f8
commit
9930430026
|
@ -167,6 +167,11 @@ namespace Jackett.Indexers
|
|||
if (secondSizeStr.Length > 3 && secondSizeStr.Contains("(") && secondSizeStr.Contains(")"))
|
||||
{ sizeStr = secondSizeStr.Replace("(", "").Replace(")", "").Trim(); }
|
||||
}
|
||||
|
||||
if(string.IsNullOrWhiteSpace(title))
|
||||
{
|
||||
title = dom.Find("div.title_text").Text() + " - " + qRow.Find("div.details_title > a").Text();
|
||||
}
|
||||
|
||||
var release = new ReleaseInfo();
|
||||
|
||||
|
|
Loading…
Reference in New Issue