Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/fbf4d40c5d83b44e258fd5548c1e39eacf7df241/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 ()
{
10 years ago
}
public override void FinishedLaunching (NSObject notification)
{
new MenuBarIcon (MainClass.AppHost.LogManager.GetLogger("Tray"))
.ShowIcon ();
}
}
}