mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-12 21:26:10 +00:00
Fix for Krypton
This commit is contained in:
parent
dbec225072
commit
00c0556300
1 changed files with 4 additions and 1 deletions
|
@ -2304,7 +2304,10 @@ class Music(Items):
|
||||||
|
|
||||||
elif mediatype == "album":
|
elif mediatype == "album":
|
||||||
# Process playstates
|
# Process playstates
|
||||||
query = "UPDATE album SET iRating = ? WHERE idAlbum = ?"
|
if self.kodiversion >= 17:
|
||||||
|
query = "UPDATE album SET fRating = ? WHERE idAlbum = ?"
|
||||||
|
else:
|
||||||
|
query = "UPDATE album SET iRating = ? WHERE idAlbum = ?"
|
||||||
kodicursor.execute(query, (rating, kodiid))
|
kodicursor.execute(query, (rating, kodiid))
|
||||||
|
|
||||||
emby_db.updateReference(itemid, checksum)
|
emby_db.updateReference(itemid, checksum)
|
||||||
|
|
Loading…
Reference in a new issue