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

11 lines
280 B

namespace NzbDrone.Common.Test
{
public static class ReflectionExtensions
{
public static T GetPropertyValue<T>(this object obj, string propertyName)
{
return (T)obj.GetType().GetProperty(propertyName).GetValue(obj, null);
}
}
}