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

26 lines
729 B

using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
11 years ago
using MediaBrowser.Model.LiveTv;
11 years ago
namespace Emby.Server.Implementations.LiveTv
11 years ago
{
/// <summary>
/// <see cref="IConfigurationFactory" /> implementation for <see cref="LiveTvOptions" />.
/// </summary>
11 years ago
public class LiveTvConfigurationFactory : IConfigurationFactory
{
/// <inheritdoc />
11 years ago
public IEnumerable<ConfigurationStore> GetConfigurations()
{
return new ConfigurationStore[]
11 years ago
{
new ConfigurationStore
{
ConfigurationType = typeof(LiveTvOptions),
Key = "livetv"
11 years ago
}
};
}
}
}