mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Fixes BitMeTV searches
Fixes issue https://github.com/zone117x/Jackett/issues/203
This commit is contained in:
@@ -21,10 +21,11 @@ namespace Jackett.Indexers
|
|||||||
{
|
{
|
||||||
public class BitMeTV : BaseIndexer, IIndexer
|
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 LoginUrl { get { return SiteLink + "login.php"; } }
|
||||||
private string LoginPost { get { return SiteLink + "takelogin.php"; } }
|
private string LoginPost { get { return SiteLink + "takelogin.php"; } }
|
||||||
private string CaptchaUrl { get { return SiteLink + "visual.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
|
new ConfigurationDataCaptchaLogin configData
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user