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

12 lines
349 B

using System;
namespace NzbDrone.Common.Expansive
{
internal class PatternStyle
{
public string TokenMatchPattern { get; set; }
public Func<string, string> TokenFilter { get; set; }
public Func<string, string> TokenReplaceFilter { get; set; }
public Func<string, string> OutputFilter { get; set; }
}
}