Fix not all songs being synced
This commit is contained in:
parent
9b9d2be53d
commit
5cf52aa2a3
1 changed files with 1 additions and 1 deletions
|
@ -638,7 +638,7 @@ class SectionItems(DownloadGen):
|
||||||
"""
|
"""
|
||||||
def __init__(self, section_id, plex_type=None, last_viewed_at=None,
|
def __init__(self, section_id, plex_type=None, last_viewed_at=None,
|
||||||
updated_at=None, args=None):
|
updated_at=None, args=None):
|
||||||
if plex_type == v.PLEX_TYPE_EPISODE:
|
if plex_type in (v.PLEX_TYPE_EPISODE, v.PLEX_TYPE_SONG):
|
||||||
# Annoying Plex bug. You won't get all episodes otherwise
|
# Annoying Plex bug. You won't get all episodes otherwise
|
||||||
url = '{server}/library/sections/%s/allLeaves' % section_id
|
url = '{server}/library/sections/%s/allLeaves' % section_id
|
||||||
plex_type = None
|
plex_type = None
|
||||||
|
|
Loading…
Reference in a new issue