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

24 lines
584 B

using System;
using System.Linq;
namespace NzbDrone.Common
{
public static class StringExtension
{
public static string NullSafe(this string target)
{
return ((object)target).NullSafe().ToString();
}
public static object NullSafe(this object target)
{
if (target != null) return target;
return "[NULL]";
}
public static string FirstCharToUpper(this string input)
{
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
}
}
}