Fixed bug with app not exiting, piratebay now works on mono

This commit is contained in:
zone117x
2015-04-23 20:21:19 -06:00
parent 7834411bbd
commit 8cf45a5e45
10 changed files with 222 additions and 214 deletions

View File

@@ -73,7 +73,7 @@ namespace Jackett
public async Task<ConfigurationData> GetConfigurationForSetup ()
{
var loginPage = await client.GetAsync (LoginUrl);
await client.GetAsync (LoginUrl);
var captchaImage = await client.GetByteArrayAsync (CaptchaUrl);
var config = new BmtvConfig ();
config.CaptchaImage.Value = captchaImage;
@@ -138,7 +138,6 @@ namespace Jackett
foreach (var row in table.Children().Skip(1)) {
var release = new ReleaseInfo ();
CQ qRow = row.Cq ();
CQ qDetailsCol = row.ChildElements.ElementAt (1).Cq ();
CQ qLink = qDetailsCol.Children ("a").First ();