2021-05-07 00:39:20 +02:00
|
|
|
#nullable disable
|
|
|
|
|
|
2020-08-22 21:56:24 +02:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2019-01-13 21:01:16 +01:00
|
|
|
using System;
|
2018-12-27 18:27:57 -05:00
|
|
|
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));
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-13 20:30:58 +01:00
|
|
|
}
|