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/4d04acb3215e041bf0bb5d353fd84b37bd0bf8d5/MediaBrowser.Server.Implementations/LiveTv/LiveTvConfigurationFactory.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Server.Impleme.../LiveTv/LiveTvConfigurationFactory.cs

22 lines
588 B

11 years ago
using MediaBrowser.Common.Configuration;
11 years ago
using MediaBrowser.Model.LiveTv;
11 years ago
using System.Collections.Generic;
namespace MediaBrowser.Server.Implementations.LiveTv
{
public class LiveTvConfigurationFactory : IConfigurationFactory
{
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new List<ConfigurationStore>
{
new ConfigurationStore
{
ConfigurationType = typeof(LiveTvOptions),
Key = "livetv"
}
};
}
}
}