Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/a86c131761d6040fe8ed23be878bf7ec783f4247/Exceptron.Client/Message/Frame.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/Exceptron.Client/Message/Frame.cs

30 lines
693 B

namespace Exceptron.Client.Message
{
internal class Frame
{
/// <summary>
/// Order of current frame
/// </summary>
public int i { get; set; }
/// <summary>
/// Line number of the current frame
/// </summary>
public int ln { get; set; }
/// <summary>
/// Method name for current frame
/// </summary>
public string m { get; set; }
/// <summary>
/// Class name for current frame
/// </summary>
public string c { get; set; }
/// <summary>
/// File name for current frame
/// </summary>
public string fn { get; set; }
}
}