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

update channel sorting

release-10.1.0
Luke Pulverenti 8 years ago
parent 26c88e6ad6
commit 5600220580

@ -93,7 +93,7 @@ namespace MediaBrowser.Controller.LiveTv
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
{
return (number * 10).ToString("00000-") + (Name ?? string.Empty);
return string.Format("{0:00000.0}", number) + "-" + (Name ?? string.Empty);
}
}

Loading…
Cancel
Save