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

Url decode for auth value

pull/4799/head
Tommaso Stocchi 4 years ago
parent b611a108f8
commit 6e2cfc6569

@ -273,10 +273,16 @@ namespace Emby.Server.Implementations.HttpServer.Security
{
var param = item.Trim().Split('=', 2);
result[param[0]] = param[1].Trim('"');
var value =param[1].Trim('"');
result[param[0]] = value;
}
return result;
}
private static string NormalizeValue(string value)
{
return string.IsNullOrEmpty(value) ? value : WebUtility.UrlDecode(value);
}
}
}

Loading…
Cancel
Save