Fix many items not getting synced
This commit is contained in:
parent
9682d7a313
commit
5d6b8f1273
2 changed files with 13 additions and 5 deletions
|
@ -187,7 +187,8 @@ class FullSync(common.libsync_mixin):
|
|||
# Tell the processing thread about this new section
|
||||
queue_info = InitNewSection(section['context'],
|
||||
iterator.total,
|
||||
iterator.get('librarySectionTitle'),
|
||||
iterator.get('librarySectionTitle',
|
||||
iterator.get('title1')),
|
||||
section['section_id'],
|
||||
section['plex_type'])
|
||||
self.queue.put(queue_info)
|
||||
|
|
|
@ -522,10 +522,11 @@ class DownloadChunk(backgroundthread.Task):
|
|||
"""
|
||||
This task will also be executed while library sync is suspended!
|
||||
"""
|
||||
def setup(self, url, args, callback):
|
||||
def __init__(self, url, args, callback):
|
||||
self.url = url
|
||||
self.args = args
|
||||
self.callback = callback
|
||||
super(DownloadChunk, self).__init__()
|
||||
|
||||
def run(self):
|
||||
xml = DU().downloadUrl(self.url, parameters=self.args)
|
||||
|
@ -587,8 +588,9 @@ class DownloadGen(object):
|
|||
raise RuntimeError('Error while downloading chunks for %s'
|
||||
% self.url)
|
||||
else:
|
||||
task = DownloadChunk()
|
||||
task.setup(self.url, self.args, self.on_chunk_downloaded)
|
||||
task = DownloadChunk(self.url,
|
||||
deepcopy(self.args), # Beware!
|
||||
self.on_chunk_downloaded)
|
||||
backgroundthread.BGThreader.addTask(task)
|
||||
|
||||
def on_chunk_downloaded(self, xml):
|
||||
|
@ -630,6 +632,11 @@ class SectionItems(DownloadGen):
|
|||
"""
|
||||
def __init__(self, section_id, plex_type=None, last_viewed_at=None,
|
||||
updated_at=None, args=None):
|
||||
if plex_type == v.PLEX_TYPE_EPISODE:
|
||||
# Annoying Plex bug. You won't get all episodes otherwise
|
||||
url = '{server}/library/sections/%s/allLeaves' % section_id
|
||||
plex_type = None
|
||||
else:
|
||||
url = '{server}/library/sections/%s/all' % section_id
|
||||
super(SectionItems, self).__init__(url, plex_type, last_viewed_at,
|
||||
updated_at, args)
|
||||
|
|
Loading…
Reference in a new issue