aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/LibraryManagerExtensions.cs
blob: 7bc8fa5abdd9283147c89e0d256941fa23823d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#nullable disable

#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));
        }
    }
}