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

28 lines
551 B

using System;
using Marr.Data;
namespace NzbDrone.Core.Datastore
{
public interface IDatabase
{
IDataMapper DataMapper { get; }
}
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;
}
12 years ago
public IDataMapper DataMapper
{
get
{
return _dataMapperFactory();
}
}
}
}