Added a retry handler into the solution. We can now retry failed api requests.

this should resolve #202 and start on #208
This commit is contained in:
TidusJar 2016-05-12 22:39:21 -04:00
parent f9205fc027
commit adeeb7824d
5 changed files with 90 additions and 8 deletions

View file

@ -38,7 +38,6 @@ namespace PlexRequests.UI.Validators
RuleFor(request => request.Ip).NotEmpty().WithMessage("You must specify a IP/Host name.");
RuleFor(request => request.Port).NotEmpty().WithMessage("You must specify a Port.");
RuleFor(request => request.QualityProfile).NotEmpty().WithMessage("You must specify a Quality Profile.");
RuleFor(request => request.RootPath).NotEmpty().WithMessage("You must specify a Root Path.");
}
}
}