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

11 lines
280 B

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