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/4beb41fea8fe8d97220668752b312db84f3fa421/MediaBrowser.Controller/Channels/ISearchableChannel.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
using System.Collections.Generic ;
using System.Threading ;
using System.Threading.Tasks ;
namespace MediaBrowser.Controller.Channels
{
public interface ISearchableChannel
{
/// <summary>
/// Searches the specified search term.
/// </summary>
/// <param name="searchInfo">The search information.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns>
Task < IEnumerable < ChannelItemInfo > > Search ( ChannelSearchInfo searchInfo , CancellationToken cancellationToken ) ;
}
public interface ISupportsLatestMedia
{
/// <summary>
/// Gets the latest media.
/// </summary>
/// <param name="request">The request.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{IEnumerable{ChannelItemInfo}}.</returns>
Task < IEnumerable < ChannelItemInfo > > GetLatestMedia ( ChannelLatestMediaSearch request , CancellationToken cancellationToken ) ;
}
}