Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/0564d454e5ad4f59702aa9022af6bb8fd064a9ff/MediaBrowser.Controller/Entities/IHasKeywords.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
public interface IHasKeywords
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the keywords.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The keywords.</value>
|
|
|
|
|
List<string> Keywords { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class KeywordExtensions
|
|
|
|
|
{
|
|
|
|
|
public static void AddKeyword(this IHasKeywords item, string name)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("name");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!item.Keywords.Contains(name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
item.Keywords.Add(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|