Remove exception handler

pull/2931/head
crobibero 5 years ago
parent 8eac528815
commit 84fcb4926c

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

Loading…
Cancel
Save