Added hidden option to allow updating of XBMC even if video is playing.

This commit is contained in:
Mark McDowall 2012-01-04 11:48:48 -08:00
commit b8559ccec3
2 changed files with 29 additions and 14 deletions

View file

@ -230,6 +230,13 @@ namespace NzbDrone.Core.Providers.Core
set { SetValue("XbmcCleanLibrary", value); }
}
public virtual Boolean XbmcUpdateWhenPlaying
{
get { return GetValueBoolean("XbmcUpdateWhenPlaying"); }
set { SetValue("XbmcUpdateWhenPlaying", value); }
}
public virtual string XbmcHosts
{
get { return GetValue("XbmcHosts", "localhost:8080"); }