mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Fixed getting series with number only titles. eg. 90210
This commit is contained in:
parent
87731d56bf
commit
e88768d621
4 changed files with 55 additions and 19 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue