Remove exception handler

This commit is contained in:
crobibero 2020-04-21 07:52:33 -06:00
parent 1fc6825410
commit 08eba82bb7
1 changed files with 0 additions and 4 deletions

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);
}
}
}
}