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

24 lines
411 B

using System;
using System.Drawing;
using MonoMac.Foundation;
using MonoMac.AppKit;
using MonoMac.ObjCRuntime;
namespace MediaBrowser.Server.Mac
{
public partial class AppDelegate : NSApplicationDelegate
{
public AppDelegate ()
{
}
public override void FinishedLaunching (NSObject notification)
{
new MenuBarIcon (MainClass.AppHost.LogManager.GetLogger("Tray"))
.ShowIcon ();
}
}
}