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/e91f569c154e571f52ea6a86fc3920700c317a56/MediaBrowser.Server.Mac/AppController.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Server.Mac/AppController.cs

20 lines
377 B

using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Logging;
using System;
using MonoMac.Foundation;
using MonoMac.AppKit;
namespace MediaBrowser.Server.Mac
{
[Register("AppController")]
public partial class AppController : NSObject
{
public override void AwakeFromNib()
{
//new MenuBarIcon ().ShowIcon ();
}
}
}