Fix SCC not saving and AlphaRatio

This commit is contained in:
KZ
2015-07-25 11:47:01 +01:00
parent e9e8d29697
commit 2673d5a796
5 changed files with 66 additions and 77 deletions

View File

@@ -86,6 +86,7 @@ namespace Jackett.Indexers
else
{
var configSaveData = new JObject();
configSaveData["cookie_header"] = cookieHeader;
SaveConfig(configSaveData);
IsConfigured = true;
}
@@ -96,8 +97,8 @@ namespace Jackett.Indexers
cookieHeader = (string)jsonConfig["cookie_header"];
if (!string.IsNullOrEmpty(cookieHeader))
{
IsConfigured = true;
}
IsConfigured = true;
}
}
public async Task<ReleaseInfo[]> PerformQuery(TorznabQuery query)