Fix: Remove invalid metadata images

This commit is contained in:
Keivan Beigi 2015-01-02 10:57:51 -08:00
parent b907243bc0
commit c8993db2ad
21 changed files with 332 additions and 132 deletions

View file

@ -282,6 +282,13 @@ namespace NzbDrone.Core.Configuration
set { SetValue("ShowRelativeDates", value); }
}
public bool CleanupMetadataImages
{
get { return GetValueBoolean("CleanupMetadataImages", true); }
set { SetValue("CleanupMetadataImages", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty);