diff --git a/src/NzbDrone.Core/Notifications/Xbmc/XbmcSettings.cs b/src/NzbDrone.Core/Notifications/Xbmc/XbmcSettings.cs index edce3ac06..484c57b61 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/XbmcSettings.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/XbmcSettings.cs @@ -13,7 +13,7 @@ namespace NzbDrone.Core.Notifications.Xbmc public XbmcSettingsValidator() { RuleFor(c => c.Host).NotEmpty(); - RuleFor(c => c.DisplayTime).GreaterThan(0); + RuleFor(c => c.DisplayTime).GreaterThanOrEqualTo(2); } }