mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Merge pull request #701 from oddstr13/i-added-music-videos-to-my-library
Fix syncing of musicvideos with production year YYYYmmdd
This commit is contained in:
commit
d1bf1009b6
1 changed files with 7 additions and 1 deletions
|
@ -79,6 +79,12 @@ class MusicVideos(KodiDb):
|
|||
update = False
|
||||
LOG.info("MvideoId %s missing from kodi. repairing the entry.", obj['MvideoId'])
|
||||
|
||||
if (obj.get('ProductionYear') or 0) > 9999:
|
||||
obj['ProductionYear'] = int(str(obj['ProductionYear'])[:4])
|
||||
|
||||
if (obj.get('Year') or 0) > 9999:
|
||||
obj['Year'] = int(str(obj['Year'])[:4])
|
||||
|
||||
obj['Path'] = API.get_file_path(obj['Path'])
|
||||
obj['LibraryId'] = self.library['Id']
|
||||
obj['LibraryName'] = self.library['Name']
|
||||
|
@ -91,7 +97,7 @@ class MusicVideos(KodiDb):
|
|||
obj['PlayCount'] = API.get_playcount(obj['Played'], obj['PlayCount'])
|
||||
obj['Resume'] = API.adjust_resume((obj['Resume'] or 0) / 10000000.0)
|
||||
obj['Runtime'] = round(float((obj['Runtime'] or 0) / 10000000.0), 6)
|
||||
obj['Premiere'] = Local(obj['Premiere']) if obj['Premiere'] else datetime.date(obj['Year'] or 2021, 1, 1)
|
||||
obj['Premiere'] = Local(obj['Premiere']) if obj['Premiere'] else datetime.date(obj['Year'] or 1970, 1, 1)
|
||||
obj['Genre'] = " / ".join(obj['Genres'])
|
||||
obj['Studio'] = " / ".join(obj['Studios'])
|
||||
obj['Artists'] = " / ".join(obj['Artists'] or [])
|
||||
|
|
Loading…
Reference in a new issue