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/a43135fc1f96c3a6a61db9e4100e77d352a3c6f1/MediaBrowser.Common/Net/IHasResultFactory.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using ServiceStack.ServiceHost;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IHasResultFactory
|
|
|
|
|
/// Services that require a ResultFactory should implement this
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IHasResultFactory : IRequiresRequestContext
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the result factory.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The result factory.</value>
|
|
|
|
|
IHttpResultFactory ResultFactory { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|