mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fixes #197 - Artists with '&' do not show their full name when you drill down
This commit is contained in:
parent
bc2138b959
commit
5f27709a03
@ -1,8 +1,9 @@
|
||||
var LibraryBrowser = (function (window, $) {
|
||||
|
||||
function encodeName(name) {
|
||||
return name;
|
||||
return encodeURIComponent(name).replace("'", '%27');
|
||||
|
||||
var val = $.param({ name: name });
|
||||
return val.substring(val.indexOf('=') + 1);
|
||||
}
|
||||
|
||||
var defaultBackground = "#999;";
|
||||
@ -183,7 +184,7 @@
|
||||
}
|
||||
else if (item.Type == "Game") {
|
||||
|
||||
html += '<p class="itemMiscInfo">' + item.GameSystem + '</p>';
|
||||
html += '<p class="itemMiscInfo">' + item.GameSystem + '</p>';
|
||||
}
|
||||
else {
|
||||
html += '<p class="itemMiscInfo">' + LibraryBrowser.getMiscInfoHtml(item) + '</p>';
|
||||
|
Loading…
Reference in New Issue
Block a user