mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed: Refactor misc text and variables in settings (#31)
Fixed: Refactor misc text and variables in settings
This commit is contained in:
parent
d32cf1120e
commit
b63b2d70df
14 changed files with 41 additions and 41 deletions
|
@ -81,10 +81,10 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue(ConfigKey.DownloadedEpisodesFolder.ToString(), value); }
|
||||
}
|
||||
|
||||
public bool AutoUnmonitorPreviouslyDownloadedEpisodes
|
||||
public bool AutoUnmonitorPreviouslyDownloadedTracks
|
||||
{
|
||||
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedEpisodes"); }
|
||||
set { SetValue("AutoUnmonitorPreviouslyDownloadedEpisodes", value); }
|
||||
get { return GetValueBoolean("AutoUnmonitorPreviouslyDownloadedTracks"); }
|
||||
set { SetValue("AutoUnmonitorPreviouslyDownloadedTracks", value); }
|
||||
}
|
||||
|
||||
public int Retention
|
||||
|
@ -148,11 +148,11 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue("RemoveFailedDownloads", value); }
|
||||
}
|
||||
|
||||
public bool CreateEmptySeriesFolders
|
||||
public bool CreateEmptyArtistFolders
|
||||
{
|
||||
get { return GetValueBoolean("CreateEmptySeriesFolders", false); }
|
||||
get { return GetValueBoolean("CreateEmptyArtistFolders", false); }
|
||||
|
||||
set { SetValue("CreateEmptySeriesFolders", value); }
|
||||
set { SetValue("CreateEmptyArtistFolders", value); }
|
||||
}
|
||||
|
||||
public FileDateType FileDate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue