From 774eb5256dd1b41abbfbd905db20cdd98f3f4f50 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 15 Jan 2015 23:12:49 -0800 Subject: [PATCH] Fixed: XBMC notifications have a minimum display time of 2 seconds --- src/NzbDrone.Core/Notifications/Xbmc/XbmcSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }