Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/9d96df9c2efe0924e6957bfd41d959d9acddb86e/NzbDrone.Common/StringExtention.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
namespace NzbDrone.Common
|
|
{
|
|
public static class StringExtension
|
|
{
|
|
|
|
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();
|
|
}
|
|
}
|
|
} |