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/c01f9826987a7124dd8e8e5b045ce26ed9dfc5c3/NzbDrone.Common/StringExtention.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Common/StringExtention.cs

20 lines
418 B

using System;
using System.Diagnostics;
namespace NzbDrone.Common
{
public static class StringExtention
{
public static object NullSafe(this object target)
{
if (target != null) return target;
return "[NULL]";
}
public static string NullSafe(this string target)
{
return ((object)target).NullSafe().ToString();
}
}
}