mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Bugfix/cannot add cardigann indexers (#1511)
* Line endings... * Fix invalid ID for cardigann indexers (refactoring regression - my bad)
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Jackett.Indexers
|
|||||||
public string Language { get; protected set; }
|
public string Language { get; protected set; }
|
||||||
public Encoding Encoding { get; protected set; }
|
public Encoding Encoding { get; protected set; }
|
||||||
public string Type { get; protected set; }
|
public string Type { get; protected set; }
|
||||||
public string ID { get { return GetIndexerID(GetType()); } }
|
public virtual string ID { get { return GetIndexerID (GetType ()); } }
|
||||||
|
|
||||||
public bool IsConfigured { get; protected set; }
|
public bool IsConfigured { get; protected set; }
|
||||||
public TorznabCapabilities TorznabCaps { get; protected set; }
|
public TorznabCapabilities TorznabCaps { get; protected set; }
|
||||||
|
@@ -26,7 +26,7 @@ namespace Jackett.Indexers
|
|||||||
{
|
{
|
||||||
public string DefinitionString { get; protected set; }
|
public string DefinitionString { get; protected set; }
|
||||||
protected IndexerDefinition Definition;
|
protected IndexerDefinition Definition;
|
||||||
public new string ID { get { return (Definition != null ? Definition.Site : GetIndexerID(GetType())); } }
|
public override string ID { get { return (Definition != null ? Definition.Site : GetIndexerID (GetType ())); } }
|
||||||
|
|
||||||
protected WebClientStringResult landingResult;
|
protected WebClientStringResult landingResult;
|
||||||
protected IHtmlDocument landingResultDocument;
|
protected IHtmlDocument landingResultDocument;
|
||||||
|
Reference in New Issue
Block a user