mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-31 18:20:09 +01:00
Fixed: XBMC notifications have a minimum display time of 2 seconds
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user