mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
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
|
||||
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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue