Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/dc2af41e16e9bf7133651a34574a2a4f2106cf09/NzbDrone.Common/Expansive/TreeNodeList.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/NzbDrone.Common/Expansive/TreeNodeList.cs

32 lines
664 B

using System.Collections.Generic;
namespace NzbDrone.Common.Expansive
{
internal class TreeNodeList<T> : List<TreeNode<T>>
{
public TreeNode<T> Parent;
public TreeNodeList(TreeNode<T> Parent)
{
this.Parent = Parent;
}
public new TreeNode<T> Add(TreeNode<T> Node)
{
base.Add(Node);
Node.Parent = Parent;
return Node;
}
public TreeNode<T> Add(T Value)
{
return Add(new TreeNode<T>(Value));
}
public override string ToString()
{
return "Count=" + Count.ToString();
}
}
}