aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/LibraryManagerExtensions.cs
blob: af703bfb7f2ca585114f40455fa6a99aff06ba73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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));
        }
    }
}