New: Xbmc setting to update the library even when a video is playing.

This commit is contained in:
Mark McDowall 2012-05-07 11:36:44 -07:00
parent 109904ccc8
commit ba3b034a3c
3 changed files with 11 additions and 0 deletions

View file

@ -152,6 +152,7 @@ namespace NzbDrone.Web.Controllers
XbmcHosts = _configProvider.XbmcHosts,
XbmcUsername = _configProvider.XbmcUsername,
XbmcPassword = _configProvider.XbmcPassword,
XbmcUpdateWhenPlaying = _configProvider.XbmcUpdateWhenPlaying,
SmtpEnabled = _externalNotificationProvider.GetSettings(typeof(Smtp)).Enable,
SmtpNotifyOnGrab = _configProvider.SmtpNotifyOnGrab,
SmtpNotifyOnDownload = _configProvider.SmtpNotifyOnGrab,
@ -502,6 +503,7 @@ namespace NzbDrone.Web.Controllers
_configProvider.XbmcHosts = data.XbmcHosts;
_configProvider.XbmcUsername = data.XbmcUsername;
_configProvider.XbmcPassword = data.XbmcPassword;
_configProvider.XbmcUpdateWhenPlaying = data.XbmcUpdateWhenPlaying;
//SMTP
var smtpSettings = _externalNotificationProvider.GetSettings(typeof(Smtp));