mirror of
https://github.com/Jackett/Jackett.git
synced 2025-12-26 23:44:50 +01:00
* 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
14 lines
409 B
C#
14 lines
409 B
C#
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 };
|
|
}
|
|
}
|
|
}
|