diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index 0da05345..92a94a25 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -2225,7 +2225,7 @@ class Music(Items): # Only proceed if we actually have a rating from the file if file_rating is None and currentvalue: return (currentvalue, comment) - elif file_rating is None and currentvalue is None: + elif file_rating is None and not currentvalue: return (emby_rating, comment) file_rating = int(round(file_rating,0))