Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/61030bb1093f77f4ca7a742291179351acbc5e92/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

11 lines
281 B

using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
}
}