diff --git a/resources/lib/LibrarySync.py b/resources/lib/LibrarySync.py index e5a62e21..dd63b515 100644 --- a/resources/lib/LibrarySync.py +++ b/resources/lib/LibrarySync.py @@ -734,7 +734,7 @@ class LibrarySync(): if pendingChanges: xbmc.sleep(sleepVal) - utils.logMsg("MB3 Sync","updating propertyarray..." + str(propertyName) + ": " + str(json_array)) + utils.logMsg("MB3 Sync","updating propertyarray... Name:" + str(propertyName) + " Current:" + str(currentvalues) + " New:" + str(json_array)) xbmc.executeJSONRPC(jsoncommand %(id,propertyName,json_array)) return pendingChanges @@ -855,7 +855,9 @@ class LibrarySync(): premieredate = premieredatelist[0] SubElement(root, "firstaired").text = premieredate SubElement(root, "premieredate").text = premieredate - SubElement(root, "runtime").text = str(timeInfo.get('Duration')) + + if(timeInfo.get('Duration') != "0"): + SubElement(root, "runtime").text = str(timeInfo.get('Duration')) SubElement(root, "plot").text = utils.convertEncoding(API().getOverview(item))