Fixed getting series with number only titles. eg. 90210

This commit is contained in:
Keivan Beigi 2013-07-12 12:13:16 -07:00
commit e88768d621
4 changed files with 55 additions and 19 deletions

View file

@ -71,6 +71,12 @@ namespace NzbDrone.Api.REST
try
{
var resource = GetResourceById((int)options.Id);
if (resource == null)
{
return new NotFoundResponse();
}
return resource.AsResponse();
}
catch (ModelNotFoundException)