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

13 lines
299 B

using NzbDrone.Common.Serializer;
namespace NzbDrone.Test.Common
{
public static class ObjectExtentions
{
public static T JsonClone<T>(this T source) where T : new()
{
var json = source.ToJson();
return Json.Deserialize<T>(json);
}
}
}