1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix for critic rating not showing

This commit is contained in:
Luke Pulverenti 2013-06-05 00:01:22 -04:00
parent a787772df7
commit 89ebf2744e
2 changed files with 10 additions and 7 deletions

View file

@ -156,7 +156,7 @@
html += '<div class="tileName">' + name + '</div>';
if (item.CommunityRating) {
if (item.CommunityRating || item.CriticRating) {
html += '<p>' + LibraryBrowser.getRatingHtml(item) + '</p>';
}