diff --git a/Jellyfin.Api/Controllers/ItemUpdateController.cs b/Jellyfin.Api/Controllers/ItemUpdateController.cs
index 2537996512..0c66ff875f 100644
--- a/Jellyfin.Api/Controllers/ItemUpdateController.cs
+++ b/Jellyfin.Api/Controllers/ItemUpdateController.cs
@@ -60,9 +60,9 @@ namespace Jellyfin.Api.Controllers
///
/// The item id.
/// The new item properties.
- /// Item updated.
+ /// Item updated.
/// Item not found.
- /// An on success, or a if the item could not be found.
+ /// An on success, or a if the item could not be found.
[HttpPost("/Items/{itemId}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
@@ -126,7 +126,7 @@ namespace Jellyfin.Api.Controllers
RefreshPriority.High);
}
- return Ok();
+ return NoContent();
}
///
@@ -187,9 +187,9 @@ namespace Jellyfin.Api.Controllers
///
/// The item id.
/// The content type of the item.
- /// Item content type updated.
+ /// Item content type updated.
/// Item not found.
- /// An on success, or a if the item could not be found.
+ /// An on success, or a if the item could not be found.
[HttpPost("/Items/{itemId}/ContentType")]
public ActionResult UpdateItemContentType([FromRoute] Guid itemId, [FromQuery, BindRequired] string contentType)
{
@@ -217,7 +217,7 @@ namespace Jellyfin.Api.Controllers
_serverConfigurationManager.Configuration.ContentTypes = types.ToArray();
_serverConfigurationManager.SaveConfiguration();
- return Ok();
+ return NoContent();
}
private void UpdateItem(BaseItemDto request, BaseItem item)