mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-17 21:56:13 +00:00
add full sync entry to main listing
This commit is contained in:
parent
0cacd3ee87
commit
f3e7ac350d
3 changed files with 8 additions and 4 deletions
|
@ -33,7 +33,7 @@ WINDOW = xbmcgui.Window( 10000 )
|
|||
|
||||
class LibrarySync():
|
||||
|
||||
def FullLibrarySync(self):
|
||||
def FullLibrarySync(self,manualRun=False):
|
||||
|
||||
#set some variable to check if this is the first run
|
||||
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
||||
|
@ -46,7 +46,7 @@ class LibrarySync():
|
|||
|
||||
#show the progress dialog
|
||||
pDialog = None
|
||||
if (syncInstallRunDone == False or dbSyncIndication):
|
||||
if (syncInstallRunDone == False or dbSyncIndication or manualRun):
|
||||
pDialog = xbmcgui.DialogProgressBG()
|
||||
pDialog.create('Emby for Kodi', 'Performing full sync')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue