Added validation to the Email settings, also increased the availability checker from 2 minutes to 5

This commit is contained in:
tidusjar 2016-03-17 08:54:40 +00:00
parent 752d8bb66e
commit aa5304b8dd
8 changed files with 90 additions and 25 deletions

View file

@ -32,9 +32,7 @@ namespace PlexRequests.Services
{
public class UpdateInterval : IIntervals
{
public TimeSpan Measurement => TimeSpan.FromSeconds(1);
public TimeSpan CriticalNotification { get; }
public TimeSpan Notification => TimeSpan.FromMinutes(2);
public TimeSpan Notification => TimeSpan.FromMinutes(5);
}
}