Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/a9e2cc88c5af9ea70431d8e1bba14cb64afbd079/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
379 B

using System;
namespace MediaBrowser.Common.Implementations.HttpClientManager
{
/// <summary>
/// Class HttpClientInfo
/// </summary>
public class HttpClientInfo
{
/// <summary>
/// Gets or sets the last timeout.
/// </summary>
/// <value>The last timeout.</value>
public DateTime LastTimeout { get; set; }
}
}