Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5e289f37f87da449868ae8365034a72de4af46c1?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update NativeApp.cs

pull/1154/head
Luke 9 years ago
parent 37442ce4fa
commit 5e289f37f8

@ -1,5 +1,6 @@
using System; using System;
using MediaBrowser.Server.Startup.Common; using MediaBrowser.Server.Startup.Common;
using MediaBrowser.Model.Logging;
namespace MediaBrowser.Server.Mac namespace MediaBrowser.Server.Mac
{ {
@ -8,7 +9,12 @@ namespace MediaBrowser.Server.Mac
/// </summary> /// </summary>
public class NativeApp : BaseMonoApp public class NativeApp : BaseMonoApp
{ {
/// <summary> public NativeApp(ILogger logger)
: base(logger)
{
}
/// <summary>
/// Shutdowns this instance. /// Shutdowns this instance.
/// </summary> /// </summary>
public override void Shutdown() public override void Shutdown()

Loading…
Cancel
Save