mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Added config validation to ensure NzbGet KeepHistory isn't set to 0.
This commit is contained in:
parent
522ef9d8d5
commit
a72b856fb8
@ -272,6 +272,7 @@ protected override void Test(List<ValidationFailure> failures)
|
||||
{
|
||||
failures.AddIfNotNull(TestConnection());
|
||||
failures.AddIfNotNull(TestCategory());
|
||||
failures.AddIfNotNull(TestSettings());
|
||||
}
|
||||
|
||||
private ValidationFailure TestConnection()
|
||||
@ -315,7 +316,24 @@ private ValidationFailure TestCategory()
|
||||
return null;
|
||||
}
|
||||
|
||||
// Javascript doesn't support 64 bit integers natively so json officially doesn't either.
|
||||
private ValidationFailure TestSettings()
|
||||
{
|
||||
var config = _proxy.GetConfig(Settings);
|
||||
|
||||
var keepHistory = config.GetValueOrDefault("KeepHistory");
|
||||
if (keepHistory == "0")
|
||||
{
|
||||
return new NzbDroneValidationFailure(string.Empty, "NzbGet setting KeepHistory should be greater than 0")
|
||||
{
|
||||
InfoLink = string.Format("http://{0}:{1}/", Settings.Host, Settings.Port),
|
||||
DetailedDescription = "NzbGet setting KeepHistory is set to 0. Which prevents Sonarr from seeing completed downloads."
|
||||
};
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
// Javascript doesn't support 64 bit integers natively so json officially doesn't either.
|
||||
// NzbGet api thus sends it in two 32 bit chunks. Here we join the two chunks back together.
|
||||
// Simplified decimal example: "42" splits into "4" and "2". To join them I shift (<<) the "4" 1 digit to the left = "40". combine it with "2". which becomes "42" again.
|
||||
private long MakeInt64(uint high, uint low)
|
||||
@ -327,4 +345,4 @@ private long MakeInt64(uint high, uint low)
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user