Elite Tracker: Add HTTPS tracker option (#3217)

* Add option for Elite Tracker (FR) for download torrent using https for tracker URL.

* change return type.
clean code.

* use the SiteLink variable instead of hard coding
This commit is contained in:
aurelien
2018-06-11 06:42:21 +02:00
committed by kaso17
parent 53f8465e67
commit 4e91761fdf
2 changed files with 26 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
class ConfigurationDataEliteTracker : ConfigurationDataBasicLogin
{
public BoolItem TorrentHTTPSMode { get; private set; }
public ConfigurationDataEliteTracker()
: base()
{
TorrentHTTPSMode = new BoolItem { Name = "Use https for tracker URL (Experimental)", Value = false };
}
}
}