implement review suggestions

This commit is contained in:
crobibero 2020-05-19 12:58:09 -06:00
parent a7a725173d
commit b28dd47a0f
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace Jellyfin.Api.Controllers
}
catch (ResourceNotFoundException e)
{
return StatusCode(StatusCodes.Status404NotFound, e.Message);
return NotFound(e.Message);
}
}
}