jellyfin/MediaBrowser.Controller/Entities/TagExtensions.cs

34 lines
817 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Linq;
2021-12-20 07:31:07 -05:00
using Jellyfin.Extensions;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
public static class TagExtensions
{
public static void AddTag(this BaseItem item, string name)
{
if (string.IsNullOrWhiteSpace(name))
{
throw new ArgumentNullException(nameof(name));
2018-12-27 18:27:57 -05:00
}
var current = item.Tags;
2021-12-20 07:31:07 -05:00
if (!current.Contains(name, StringComparison.OrdinalIgnoreCase))
2018-12-27 18:27:57 -05:00
{
if (current.Length == 0)
{
item.Tags = new[] { name };
}
else
{
item.Tags = current.Concat(new[] { name }).ToArray();
2018-12-27 18:27:57 -05:00
}
}
}
}
}