mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 00:32:58 -07:00
Fix album count showing 0
This commit is contained in:
parent
444b138e97
commit
8114079eac
1 changed files with 1 additions and 1 deletions
|
@ -2740,7 +2740,7 @@ class PmsConnect(object):
|
||||||
return []
|
return []
|
||||||
|
|
||||||
elif str(section_id).isdigit() or section_type == 'album':
|
elif str(section_id).isdigit() or section_type == 'album':
|
||||||
if section_type == 'album':
|
if section_type == 'album' and rating_key:
|
||||||
sort_type += '&artist.id=' + str(rating_key)
|
sort_type += '&artist.id=' + str(rating_key)
|
||||||
|
|
||||||
xml_head = self.fetch_library_list(
|
xml_head = self.fetch_library_list(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue