mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-24 17:56:11 +00:00
Missing reference to rating
Was it moved by accident?
This commit is contained in:
parent
395140262d
commit
04d7ac2f01
1 changed files with 1 additions and 1 deletions
|
@ -1948,6 +1948,7 @@ class Music(Items):
|
||||||
track = disc*2**16 + tracknumber
|
track = disc*2**16 + tracknumber
|
||||||
year = item.get('ProductionYear')
|
year = item.get('ProductionYear')
|
||||||
duration = API.getRuntime()
|
duration = API.getRuntime()
|
||||||
|
rating = userdata['UserRating']
|
||||||
|
|
||||||
#if enabled, try to get the rating from file and/or emby
|
#if enabled, try to get the rating from file and/or emby
|
||||||
if not self.directstream:
|
if not self.directstream:
|
||||||
|
@ -1955,7 +1956,6 @@ class Music(Items):
|
||||||
else:
|
else:
|
||||||
hasEmbeddedCover = False
|
hasEmbeddedCover = False
|
||||||
comment = API.getOverview()
|
comment = API.getOverview()
|
||||||
rating = userdata['UserRating']
|
|
||||||
|
|
||||||
|
|
||||||
##### GET THE FILE AND PATH #####
|
##### GET THE FILE AND PATH #####
|
||||||
|
|
Loading…
Reference in a new issue