Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/2f4ccff0a2cf754ae81eb0a3a9205a6404116fce/NzbDrone.Common/Expansive/Tree.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
namespace NzbDrone.Common.Expansive
|
|
|
|
|
{
|
|
|
|
|
internal class Tree<T> : TreeNode<T>
|
|
|
|
|
{
|
|
|
|
|
public Tree(T rootValue)
|
|
|
|
|
: base(rootValue)
|
|
|
|
|
{
|
|
|
|
|
Value = rootValue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|