Manually trigger full library scan from settings

This commit is contained in:
tomkat83 2016-03-10 08:26:39 +01:00
parent e7d96e9a00
commit 6d205b5804

View file

@ -8,6 +8,7 @@ import urlparse
import xbmc import xbmc
import xbmcaddon import xbmcaddon
import xbmcgui
################################################################################################# #################################################################################################
@ -111,21 +112,15 @@ class Main:
elif mode in ("manualsync", "repair"): elif mode in ("manualsync", "repair"):
if utils.window('emby_online') != "true": if utils.window('emby_online') != "true":
# Server is not online, do not run the sync # Server is not online, do not run the sync
xbmcgui.Dialog().ok(heading="Emby for Kodi", xbmcgui.Dialog().ok(heading="PlexKodiConnect",
line1=("Unable to run the sync, the add-on is not " line1=("Unable to run the sync, the add-on is not "
"connected to the Emby server.")) "connected to the Emby server."))
utils.logMsg("EMBY", "Not connected to the emby server.", 1) utils.logMsg("PLEX", "Not connected to the emby server.", 1)
return return
if utils.window('emby_dbScan') != "true":
import librarysync
lib = librarysync.LibrarySync()
if mode == "manualsync":
librarysync.ManualSync().sync(dialog=True)
else:
lib.fullSync(repair=True)
else: else:
utils.logMsg("EMBY", "Database scan is already running.", 1) utils.logMsg("PLEX", "Requesting full library scan", 1)
utils.window('plex_runLibScan', value="full")
elif mode == "texturecache": elif mode == "texturecache":
import artwork import artwork