Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/64d87d7a68ecf30c4fe99b4b13d1dd789d712481/NzbDrone.Common/StringExtention.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/NzbDrone.Common/StringExtention.cs

25 lines
585 B

using System;
using System.Linq;
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();
}
public static string FirstCharToUpper(this string input)
{
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
}
}
}