Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/227e13d8587aed711524008e659fbe7da6285f1a/NzbDrone.Test.Common/ObjectExtentions.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/NzbDrone.Test.Common/ObjectExtentions.cs

13 lines
305 B

using Newtonsoft.Json;
namespace NzbDrone.Test.Common
{
public static class ObjectExtentions
{
public static T JsonClone<T>(this T source)
{
var json = JsonConvert.SerializeObject(source);
return JsonConvert.DeserializeObject<T>(json);
}
}
}