Skip to content

Commit

Permalink
Merge pull request jellyfin#11876 from Bond-009/enableLib
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero committed May 30, 2024
2 parents f8c7f36 + 8db79c0 commit 5630337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jellyfin.Api/Controllers/LibraryStructureController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public ActionResult UpdateMediaPath([FromBody, Required] UpdateMediaPathRequestD
public ActionResult UpdateLibraryOptions(
[FromBody] UpdateLibraryOptionsDto request)
{
var item = _libraryManager.GetItemById<CollectionFolder>(request.Id, User.GetUserId());
var item = _libraryManager.GetItemById<CollectionFolder>(request.Id);
if (item is null)
{
return NotFound();
Expand Down

0 comments on commit 5630337

Please sign in to comment.