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

pull/174/head
Mark McDowall 10 years ago
parent 4f5c437ddd
commit 774eb5256d

@ -13,7 +13,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
public XbmcSettingsValidator() public XbmcSettingsValidator()
{ {
RuleFor(c => c.Host).NotEmpty(); RuleFor(c => c.Host).NotEmpty();
RuleFor(c => c.DisplayTime).GreaterThan(0); RuleFor(c => c.DisplayTime).GreaterThanOrEqualTo(2);
} }
} }

Loading…
Cancel
Save