mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			498 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Linq;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    public static class TagExtensions
 | 
						|
    {
 | 
						|
        public static void AddTag(this BaseItem item, string name)
 | 
						|
        {
 | 
						|
            if (string.IsNullOrWhiteSpace(name))
 | 
						|
            {
 | 
						|
                throw new ArgumentNullException("name");
 | 
						|
            }
 | 
						|
 | 
						|
            if (!item.Tags.Contains(name, StringComparer.OrdinalIgnoreCase))
 | 
						|
            {
 | 
						|
                item.Tags.Add(name);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |