Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/c1b68e0deee4cebaba9b98c1e9b4acb51413ee47/NzbDrone.Core/Datastore/Database.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Core/Datastore/Database.cs

25 lines
505 B

using System;
using Marr.Data;
namespace NzbDrone.Core.Datastore
{
public interface IDatabase
{
IDataMapper GetDataMapper();
}
public class Database : IDatabase
{
12 years ago
private readonly Func<IDataMapper> _dataMapperFactory;
12 years ago
public Database(Func<IDataMapper> dataMapperFactory)
{
12 years ago
_dataMapperFactory = dataMapperFactory;
}
public IDataMapper GetDataMapper()
12 years ago
{
return _dataMapperFactory();
12 years ago
}
}
}