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
parent 4f5c437ddd
commit 774eb5256d
1 changed files with 1 additions and 1 deletions

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