make sure we are syncing all items for the playcount sync

This commit is contained in:
shaun 2015-03-20 00:28:55 +11:00
parent ad1d1d80cc
commit 40b3231156
1 changed files with 2 additions and 2 deletions

View File

@ -516,7 +516,7 @@ class LibrarySync():
viewCount = len(views)
viewCurrent = 1
for view in views:
allMB3Movies = ReadEmbyDB().getMovies(view.get('id'),True)
allMB3Movies = ReadEmbyDB().getMovies(view.get('id'), fullinfo = False, fullSync = True)
allKodiMovies = ReadKodiDB().getKodiMovies(False)
if(self.ShouldStop()):
@ -565,7 +565,7 @@ class LibrarySync():
#process Tv shows
if processTvShows:
tvshowData = ReadEmbyDB().getTVShows(True)
tvshowData = ReadEmbyDB().getTVShows(fullinfo = False, fullSync = True)
if(self.ShouldStop()):
return True