Fix compilation under mono #117. Allow explicit web client selection. Init curl at application start.

This commit is contained in:
Kayomani
2015-07-30 18:50:46 +01:00
parent 0f30905e54
commit 20871e650d
21 changed files with 139 additions and 59 deletions

View File

@@ -115,6 +115,8 @@ namespace Jackett.Indexers
var release = new ReleaseInfo();
var qRow = row.Cq();
release.Title = qRow.Find(".tooltip-content div").First().Text();
if (string.IsNullOrWhiteSpace(release.Title))
continue;
release.Description = qRow.Find(".tooltip-content div").Get(1).InnerText.Trim();
var qLink = row.Cq().Find("td:eq(2) a:eq(1)");