mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 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));
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |