Add verification for manual/repair sync
This commit is contained in:
parent
c125414991
commit
f8fe1fc694
1 changed files with 9 additions and 5 deletions
|
@ -8,6 +8,7 @@ import urlparse
|
|||
|
||||
import xbmc
|
||||
import xbmcaddon
|
||||
import xbmcgui
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
@ -87,12 +88,15 @@ class Main:
|
|||
if mode == "settings":
|
||||
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.emby)')
|
||||
elif mode in ("manualsync", "repair"):
|
||||
if utils.window('emby_dbScan') != "true":
|
||||
import librarysync
|
||||
lib = librarysync.LibrarySync()
|
||||
if mode == "manualsync":
|
||||
lib.fullSync(manualrun=True)
|
||||
else:
|
||||
lib.fullSync(repair=True)
|
||||
else:
|
||||
utils.logMsg("EMBY", "Database scan is already running.", 1)
|
||||
|
||||
elif mode == "texturecache":
|
||||
import artwork
|
||||
|
|
Loading…
Reference in a new issue