Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cb09096a59c0df9b02f4c057db93d8479678af8f You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/5274/head
BaronGreenback 4 years ago
parent b03bd7a299
commit cb09096a59

@ -921,7 +921,7 @@ namespace Jellyfin.Networking.Manager
if (config.IgnoreVirtualInterfaces)
{
// each virtual interface name must be pre-pended with the exclusion symbol !
var virtualInterfaceNames = config.VirtualInterfaceNames.Split(',').Select(p => '!' + p).ToArray();
var virtualInterfaceNames = config.VirtualInterfaceNames.Split(',').Select(p => "!" + p).ToArray();
if (lanAddresses.Length > 0)
{
var newList = new string[lanAddresses.Length + virtualInterfaceNames.Length];

Loading…
Cancel
Save