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

fix query case sensitivity

pull/702/head
Luke Pulverenti 9 years ago
parent 1cea5bcbd8
commit 0e03980262

@ -2283,7 +2283,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
private static Dictionary<string, string[]> GetTypeMapDictionary()
{
var dict = new Dictionary<string, string[]>();
var dict = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase);
foreach (var t in KnownTypes)
{

Loading…
Cancel
Save