mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-13 21:56:11 +00:00
Minor fix for TV shows progress
Count was wrong due to empty shows.
This commit is contained in:
parent
e637af1b78
commit
02dbb32227
1 changed files with 5 additions and 5 deletions
|
@ -220,14 +220,14 @@ class LibrarySync():
|
||||||
if (self.ShouldStop()):
|
if (self.ShouldStop()):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if item.get('IsFolder') and item.get('RecursiveItemCount') != 0:
|
|
||||||
allEmbyTvShowIds.append(item["Id"])
|
|
||||||
|
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
progressTitle = "Processing " + view.get('title') + " (" + str(count) + " of " + str(total) + ")"
|
progressTitle = "Processing " + view.get('title') + " (" + str(count) + " of " + str(total) + ")"
|
||||||
pDialog.update(0, "Emby for Kodi - Running Sync", progressTitle)
|
pDialog.update(0, "Emby for Kodi - Running Sync", progressTitle)
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
if item.get('IsFolder') and item.get('RecursiveItemCount') != 0:
|
||||||
|
allEmbyTvShowIds.append(item["Id"])
|
||||||
|
|
||||||
#build a list with all Id's and get the existing entry (if exists) in Kodi DB
|
#build a list with all Id's and get the existing entry (if exists) in Kodi DB
|
||||||
kodiShow = None
|
kodiShow = None
|
||||||
for kodishow in allKodiTvShows:
|
for kodishow in allKodiTvShows:
|
||||||
|
|
Loading…
Reference in a new issue