Fixed: Use separate guid for download protection

Fixes #963
This commit is contained in:
Qstick
2022-05-13 18:41:36 -05:00
parent bc50fd937d
commit 6783514525
3 changed files with 9 additions and 4 deletions
@@ -156,6 +156,8 @@ namespace NzbDrone.Core.Configuration
public string HmacSalt => GetValue("HmacSalt", Guid.NewGuid().ToString(), true);
public string DownloadProtectionKey => GetValue("DownloadProtectionKey", Guid.NewGuid().ToString().Replace("-", ""), true);
public bool ProxyEnabled => GetValueBoolean("ProxyEnabled", false);
public ProxyType ProxyType => GetValueEnum<ProxyType>("ProxyType", ProxyType.Http);