mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
DownloadClient added to the UI, it still will only download via Sabnzbd.
This commit is contained in:
parent
0b88976ce0
commit
d670e45001
10 changed files with 234 additions and 127 deletions
|
@ -409,6 +409,13 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("AutoIgnorePreviouslyDownloadedEpisodes", value); }
|
||||
}
|
||||
|
||||
public virtual DownloadClientType DownloadClient
|
||||
{
|
||||
get { return (DownloadClientType)GetValueInt("DownloadClient"); }
|
||||
|
||||
set { SetValue("DownloadClient", (int)value); }
|
||||
}
|
||||
|
||||
public string UGuid
|
||||
{
|
||||
get { return GetValue("UGuid", Guid.NewGuid().ToString(), persist: true); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue