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

fixed case sensitivity in ratings comparisons

pull/702/head
Luke Pulverenti 12 years ago
parent 803e8b4a2e
commit 54f27da740

@ -204,7 +204,7 @@ namespace MediaBrowser.Server.Implementations.Localization
})
.Where(i => i != null)
.ToDictionary(i => i.Name);
.ToDictionary(i => i.Name, StringComparer.OrdinalIgnoreCase);
var countryCode = Path.GetFileNameWithoutExtension(file).Split('-').Last();

Loading…
Cancel
Save