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/e9317f3cbc9a260883e3f1292b6c9f674cdf923c/MediaBrowser.Controller/Net/IServiceRequest.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Collections.Specialized;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
|
{
|
|
|
|
|
public interface IServiceRequest
|
|
|
|
|
{
|
|
|
|
|
object OriginalRequest { get; }
|
|
|
|
|
string RemoteIp { get; }
|
|
|
|
|
NameValueCollection Headers { get; }
|
|
|
|
|
NameValueCollection QueryString { get; }
|
|
|
|
|
IDictionary<string,object> Items { get; }
|
|
|
|
|
void AddResponseHeader(string name, string value);
|
|
|
|
|
}
|
|
|
|
|
}
|