mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
14 lines
320 B
C#
14 lines
320 B
C#
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));
|
|
}
|
|
}
|
|
}
|