mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-12 21:26:10 +00:00
fix progress dialog error for box sets
This commit is contained in:
parent
aa764d65a6
commit
65b6411fb3
2 changed files with 3 additions and 3 deletions
|
@ -294,10 +294,10 @@ class DownloadUtils():
|
||||||
|
|
||||||
if (https == 'false'):
|
if (https == 'false'):
|
||||||
#xbmc.log("Https disabled.")
|
#xbmc.log("Https disabled.")
|
||||||
conn = httplib.HTTPConnection(server, timeout=5)
|
conn = httplib.HTTPConnection(server, timeout=30)
|
||||||
elif (https == 'true'):
|
elif (https == 'true'):
|
||||||
#xbmc.log("Https enabled.")
|
#xbmc.log("Https enabled.")
|
||||||
conn = httplib.HTTPSConnection(server, timeout=5)
|
conn = httplib.HTTPSConnection(server, timeout=30)
|
||||||
|
|
||||||
# make the connection and send the request
|
# make the connection and send the request
|
||||||
if(postBody != None):
|
if(postBody != None):
|
||||||
|
|
|
@ -193,7 +193,7 @@ class LibrarySync():
|
||||||
|
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
progressTitle = "Sync DB : BoxSets"
|
progressTitle = "Sync DB : BoxSets"
|
||||||
pDialog.update(percentage, progressTitle, "Updating Movie: " + str(count))
|
pDialog.update(0, progressTitle, "Retrieving Boxset List")
|
||||||
|
|
||||||
utils.logMsg("Sync Movies", "BoxSet Sync Started", 1)
|
utils.logMsg("Sync Movies", "BoxSet Sync Started", 1)
|
||||||
boxsets = ReadEmbyDB().getBoxSets()
|
boxsets = ReadEmbyDB().getBoxSets()
|
||||||
|
|
Loading…
Reference in a new issue