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/10229e1afe7e2403c59f508a667cafbb2c85a9ce/MediaBrowser.Controller/Providers/RemoteSearchQuery.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Providers/RemoteSearchQuery.cs

26 lines
705 B

#pragma warning disable CS1591
using System;
6 years ago
namespace MediaBrowser.Controller.Providers
{
public class RemoteSearchQuery<T>
where T : ItemLookupInfo
{
public T SearchInfo { get; set; }
public Guid ItemId { get; set; }
6 years ago
/// <summary>
/// Will only search within the given provider when set.
6 years ago
/// </summary>
public string SearchProviderName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether disabled providers should be included.
6 years ago
/// </summary>
/// <value><c>true</c> if disabled providers should be included.</value>
6 years ago
public bool IncludeDisabledProviders { get; set; }
}
}