mirror of https://github.com/lidarr/Lidarr
Fixed: XBMC notifications have a minimum display time of 2 seconds
This commit is contained in:
parent
4f5c437ddd
commit
774eb5256d
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue