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

22 lines
471 B

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