one more fix for the musictags
This commit is contained in:
parent
11cf78de36
commit
6f72dfffe9
1 changed files with 2 additions and 2 deletions
|
@ -2231,9 +2231,9 @@ class Music(Items):
|
||||||
|
|
||||||
# Only proceed if we actually have a rating from the file
|
# Only proceed if we actually have a rating from the file
|
||||||
if file_rating is None and currentvalue:
|
if file_rating is None and currentvalue:
|
||||||
return (currentvalue, comment)
|
return (currentvalue, comment, False)
|
||||||
elif file_rating is None and not currentvalue:
|
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))
|
self.logMsg("getSongTagsFromFile --> embyid: %s - emby_rating: %s - file_rating: %s - current rating in kodidb: %s" %(embyid, emby_rating, file_rating, currentvalue))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue