Merge pull request #204 from flightlevel/master

Fixes BitMeTV searches
This commit is contained in:
KZ 2015-10-07 23:35:24 +01:00
commit cc615b498d
1 changed files with 2 additions and 1 deletions

View File

@ -21,10 +21,11 @@ namespace Jackett.Indexers
{
public class BitMeTV : BaseIndexer, IIndexer
{
//https is poorly implemented on BitMeTV. Site uses http to login, but then redirects to https for search
private string LoginUrl { get { return SiteLink + "login.php"; } }
private string LoginPost { get { return SiteLink + "takelogin.php"; } }
private string CaptchaUrl { get { return SiteLink + "visual.php"; } }
private string SearchUrl { get { return SiteLink + "browse.php"; } }
private string SearchUrl { get { return "https://www.bitmetv.org/browse.php"; } }
new ConfigurationDataCaptchaLogin configData
{