Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/6fc8ec6cbc1c436380e9630568ac3dc368ddfd0f/NzbDrone.Common.Test/ReflectionExtensions.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|