Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/154b7d8505e27dca9b5f68b2cf69d8c7dd44dcc3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix identation

pull/6522/head
Fernando Fernández 4 years ago
parent f4af78817d
commit 154b7d8505
No known key found for this signature in database
GPG Key ID: 44495B839CCFF8CF

@ -78,8 +78,9 @@ namespace Jellyfin.Server
}
ServiceCollection.AddDbContextPool<JellyfinDb>(
options => options.UseLoggerFactory(LoggerFactory).
UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
options => options
.UseLoggerFactory(LoggerFactory)
.UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
ServiceCollection.AddEventServices();
ServiceCollection.AddSingleton<IBaseItemManager, BaseItemManager>();

Loading…
Cancel
Save