fixed blackhole config to be boolean

This commit is contained in:
kay.one 2011-05-08 20:31:01 -07:00
commit cb4d0e2450
3 changed files with 4 additions and 4 deletions

View file

@ -173,9 +173,9 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("SabTvPriority", value); }
}
public virtual String UseBlackhole
public virtual Boolean UseBlackhole
{
get { return GetValue("UseBlackhole"); }
get { return GetValueBoolean("UseBlackhole"); }
set { SetValue("UseBlackhole", value); }
}