diff --git a/Jellyfin.Api/Controllers/ConfigurationController.cs b/Jellyfin.Api/Controllers/ConfigurationController.cs index 7b3d05c100..5db49b69e3 100644 --- a/Jellyfin.Api/Controllers/ConfigurationController.cs +++ b/Jellyfin.Api/Controllers/ConfigurationController.cs @@ -131,9 +131,8 @@ namespace Jellyfin.Api.Controllers public ActionResult UpdateMediaEncoderPath([FromBody, Required] MediaEncoderPathDto mediaEncoderPath) { // API ENDPOINT DISABLED (NOOP) FOR SECURITY PURPOSES - return NoContent(); //_mediaEncoder.UpdateEncoderPath(mediaEncoderPath.Path, mediaEncoderPath.PathType); - //return NoContent(); + return NoContent(); } } }