Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bb90157b0723395b0e3cda20d04c42ff2970a07b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -192,7 +192,7 @@ namespace MediaBrowser.Model.Configuration
public int MigrationVersion { get ; set ; }
public int SchemaVersion { get ; set ; }
public int SqliteCacheSize Kb { get ; set ; }
public int SqliteCacheSize { get ; set ; }
public bool DownloadImagesInAdvance { get ; set ; }
@ -212,7 +212,7 @@ namespace MediaBrowser.Model.Configuration
{
LocalNetworkAddresses = new string [ ] { } ;
Migrations = new string [ ] { } ;
SqliteCacheSize Kb = 5000 0;
SqliteCacheSize = 0;
EnableCustomPathSubFolders = true ;
EnableLocalizedGuids = true ;
@ -123,7 +123,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
protected override async Task < IDbConnection > CreateConnection ( bool isReadOnly = false )
{
var cacheSize = _config . Configuration . SqliteCacheSize Kb ;
var cacheSize = _config . Configuration . SqliteCacheSize ;
if ( cacheSize < = 0 )
{
cacheSize = Math . Min ( Environment . ProcessorCount * 50000 , 200000 ) ;