diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index ec6a8150..6bcdc2b2 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -2231,9 +2231,9 @@ class Music(Items): # Only proceed if we actually have a rating from the file if file_rating is None and currentvalue: - return (currentvalue, comment) + return (currentvalue, comment, False) elif file_rating is None and not currentvalue: - return (emby_rating, comment) + return (emby_rating, comment, False) self.logMsg("getSongTagsFromFile --> embyid: %s - emby_rating: %s - file_rating: %s - current rating in kodidb: %s" %(embyid, emby_rating, file_rating, currentvalue))