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/02f749c654a5af4525304ed3ee470ba40c6405b9/Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

17 lines
371 B

using System;
namespace Emby.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; }
}
}