Remove exception handler

This commit is contained in:
crobibero 2020-04-21 07:52:33 -06:00
parent 8eac528815
commit 84fcb4926c

View file

@ -79,10 +79,6 @@ namespace Jellyfin.Api.Controllers
{
return StatusCode(StatusCodes.Status404NotFound, e.Message);
}
catch (Exception e)
{
return StatusCode(StatusCodes.Status500InternalServerError, e.Message);
}
}
}
}