Saved password security

This commit is contained in:
KZ
2015-08-07 20:09:13 +01:00
parent 1725550b21
commit 6d0aa05761
44 changed files with 340 additions and 62 deletions

View File

@@ -33,7 +33,7 @@ namespace Jackett.Indexers
set { base.configData = value; }
}
public Freshon(IIndexerManagerService i, Logger l, IWebClient c)
public Freshon(IIndexerManagerService i, Logger l, IWebClient c, IProtectionService ps)
: base(name: "FreshOnTV",
description: "Our goal is to provide the latest stuff in the TV show domain",
link: "https://freshon.tv/",
@@ -41,6 +41,7 @@ namespace Jackett.Indexers
manager: i,
client: c,
logger: l,
p: ps,
configData: new ConfigurationDataBasicLogin())
{
}