Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/547f248a620c2de61d72703590f9c5c4720ba6e2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
2 deletions
@ -1,11 +1,13 @@
using System ;
using System.IO ;
using MediaBrowser.Common.Configuration ;
using MediaBrowser.Controller.Extensions ;
using Microsoft.Extensions.Configuration ;
namespace Emby.Server.Implementations.AppBase
{
/// <summary>
/// Provides a base class to hold common application paths used by both the U i and Server.
/// Provides a base class to hold common application paths used by both the U I and Server.
/// This can be subclassed to add application-specific paths.
/// </summary>
public abstract class BaseApplicationPaths : IApplicationPaths
@ -40,7 +42,10 @@ namespace Emby.Server.Implementations.AppBase
/// <summary>
/// Gets the path to the web UI resources folder.
/// </summary>
/// <value>The web UI resources path, or null if the server is not hosting any web content.</value>
/// <value>The web UI resources path.</value>
/// <remarks>
/// This value is not relevant if <see cref="ConfigurationExtensions.IsNoWebContent(IConfiguration)"/> is true.
/// </remarks>
public string WebPath { get ; }
/// <summary>