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/8dcab1882b0661db96cea259dbcf9de16cb0c62e/Emby.Server.Implementations/Logging/ConsoleLogger.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Server.Implementations/Logging/ConsoleLogger.cs

14 lines
268 B

using System;
using MediaBrowser.Model.Logging;
namespace Emby.Server.Implementations.Logging
{
public class ConsoleLogger : IConsoleLogger
{
public void WriteLine(string message)
{
Console.WriteLine(message);
}
}
}