mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
fixed blackhole config to be boolean
This commit is contained in:
parent
343c303bc6
commit
cb4d0e2450
3 changed files with 4 additions and 4 deletions
|
@ -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); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue