Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/blame/commit/bb22334d026e92a1f2cf0ca87e2f8c4186e558de/tests/Recyclarr.Tests.TestLibrary/TestConfigurationScope.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
recyclarr/tests/Recyclarr.Tests.TestLibrary/TestConfigurationScope.cs

13 lines
261 B

using Autofac;
using Recyclarr.Config;
namespace Recyclarr.Tests.TestLibrary;
public class TestConfigurationScope(ILifetimeScope scope) : ConfigurationScope(scope)
{
public T Resolve<T>() where T : notnull
{
return Scope.Resolve<T>();
}
}