mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 18:25:44 +01:00
15 lines
353 B
C#
15 lines
353 B
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public static class LibraryManagerExtensions
|
|
{
|
|
public static BaseItem? GetItemById(this ILibraryManager manager, string id)
|
|
{
|
|
return manager.GetItemById(new Guid(id));
|
|
}
|
|
}
|
|
}
|