From 6f72dfffe919a0807326bac340ed46add9fec1da Mon Sep 17 00:00:00 2001 From: marcelveldt Date: Mon, 18 Jan 2016 21:16:11 +0100 Subject: [PATCH] one more fix for the musictags --- resources/lib/itemtypes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))