Fixed: Refactor misc text and variables in settings (#31)

Fixed: Refactor misc text and variables in settings
This commit is contained in:
Qstick 2017-07-24 21:56:40 -04:00 committed by Joseph Milazzo
parent d32cf1120e
commit b63b2d70df
14 changed files with 41 additions and 41 deletions

View file

@ -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