mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-19 15:55:08 +00:00
Version bump 3.1.16
Additional logging, fix kodi source.
This commit is contained in:
parent
387cfafa5a
commit
bd489769ca
3 changed files with 9 additions and 2 deletions
|
@ -96,6 +96,7 @@ class FullSync(object):
|
|||
''' Select all or whitelist libraries. Provides a new list.
|
||||
'''
|
||||
if not dialog("yesno", heading="{emby}", line1=_(33125), nolabel=_(33126), yeslabel=_(33127)):
|
||||
LOG.info("Selected sync later.")
|
||||
raise LibraryException('SyncLibraryLater')
|
||||
|
||||
choices = [x['Name'] for x in libraries]
|
||||
|
@ -105,6 +106,7 @@ class FullSync(object):
|
|||
if selection is None:
|
||||
raise LibraryException('LibrarySelection')
|
||||
elif not selection:
|
||||
LOG.info("Nothing was selected.")
|
||||
raise LibraryException('SyncLibraryLater')
|
||||
|
||||
if 0 in selection:
|
||||
|
@ -128,6 +130,7 @@ class FullSync(object):
|
|||
|
||||
''' Main sync process.
|
||||
'''
|
||||
LOG.info("starting sync with %s", self.sync['Libraries'])
|
||||
start_time = datetime.datetime.now()
|
||||
|
||||
for library in list(self.sync['Libraries']):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue