Fixed: XBMC notifications have a minimum display time of 2 seconds

This commit is contained in:
Mark McDowall 2015-01-15 23:12:49 -08:00
commit 774eb5256d

View file

@ -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);
}
}