Fix typo in getArtists

This commit is contained in:
angelblue05 2016-10-18 06:43:40 -05:00
parent 26dac01960
commit 984d09bd6b
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,6 @@ class Read_EmbyServer():
items = { items = {
'ParentId': parent_id,
'Items': [], 'Items': [],
'TotalRecordCount': 0 'TotalRecordCount': 0
} }
@ -450,6 +449,7 @@ class Read_EmbyServer():
url = "{server}/emby/Artists?UserId={UserId}&format=json" url = "{server}/emby/Artists?UserId={UserId}&format=json"
params = { params = {
'ParentId': parent_id,
'Recursive': True, 'Recursive': True,
'Limit': 1 'Limit': 1
} }