mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-12 11:16:14 +00:00
fix main entry point: not respond to other addons requests
This commit is contained in:
parent
4a3200f6df
commit
ad00392a68
2 changed files with 2 additions and 3 deletions
|
@ -332,7 +332,7 @@ class WriteKodiMusicDB():
|
|||
genres = " / ".join(MBitem.get("Genres"))
|
||||
artists = " / ".join(MBitem.get("Artists"))
|
||||
track = MBitem.get("IndexNumber")
|
||||
duration = int(timeInfo.get('Duration'))*60
|
||||
duration = int(timeInfo.get('Duration'))*60 ## TODO --> duration in seconds, now its capped at minutes
|
||||
year = MBitem.get("ProductionYear")
|
||||
bio = utils.convertEncoding(API().getOverview(MBitem))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue