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

11 lines
281 B

9 years ago
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);
9 years ago
}
}