Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bf1bbbdd3e72657d0e36a7a2b80c89d03fc40ba8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Changed sorting to case insensitive

pull/3401/head
BaronGreenback 5 years ago
parent 2255bc9872
commit bf1bbbdd3e

@ -1057,7 +1057,7 @@ namespace Emby.Server.Implementations
private static int VersionCompare(Tuple<long, string, string> a, Tuple<long, string, string> b)
{
int compare = string.Compare(a.Item2, b.Item2, false, CultureInfo.InvariantCulture);
int compare = string.Compare(a.Item2, b.Item2, true, CultureInfo.InvariantCulture);
if (compare == 0)
{

Loading…
Cancel
Save