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

Removed async from non-async method

pull/887/head
William Taylor 6 years ago
parent 18ae107ce4
commit c607c95e64

@ -82,7 +82,7 @@ namespace Jellyfin.Server
appConfig = await CreateConfiguration(appPaths).ConfigureAwait(false);
await CreateLogger(appConfig, appPaths).ConfigureAwait(false);
CreateLogger(appConfig, appPaths);
_logger = _loggerFactory.CreateLogger("Main");
@ -338,7 +338,7 @@ namespace Jellyfin.Server
.Build();
}
private static async Task CreateLogger(IConfiguration configuration, IApplicationPaths appPaths)
private static void CreateLogger(IConfiguration configuration, IApplicationPaths appPaths)
{
try
{

Loading…
Cancel
Save