From 5d2c47f84a4691f89558ad381ab3c69b306413b7 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 15 Sep 2018 21:55:37 -0500 Subject: [PATCH] Fix season artwork --- addon.xml | 5 +---- resources/lib/emby/core/api.py | 3 ++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/addon.xml b/addon.xml index d3a0b3e6..29287253 100644 --- a/addon.xml +++ b/addon.xml @@ -37,10 +37,7 @@ Welcome to Emby for Kodi A whole new way to manage and view your media library. The Emby addon for Kodi combines the best of Kodi - ultra smooth navigation, beautiful UIs and playback of any file under the sun, and Emby - the most powerful fully open source multi-client media metadata indexer and server. Emby for Kodi is the absolute best way to enjoy the incredible Kodi playback engine combined with the power of Emby's centralized database. Features: Direct integration with the Kodi library for native Kodi speed Instant synchronization with the Emby server Full support for Movie, TV and Music collections Emby Server direct stream and transcoding support - use Kodi when you are away from home! - - If you are on server 3.6, please do a check for updates after updating-addon settings-advanced, then reset your local database. This is to fix server events tracking. - - Fix profile switch reauth - - Fix music albums with same name, different artists. - - Fix refresh boxsets + - Fix tv shows missing, the library tag was being incorrectly applied. Update or repair your tv show libraries to fix. - Other fixes diff --git a/resources/lib/emby/core/api.py b/resources/lib/emby/core/api.py index 6c1b05db..4f7eb3e7 100644 --- a/resources/lib/emby/core/api.py +++ b/resources/lib/emby/core/api.py @@ -200,7 +200,8 @@ def get_plugins(): def get_seasons(show_id): return shows("/%s/Seasons" % show_id, params={ - 'UserId': "{UserId}" + 'UserId': "{UserId}", + 'EnableImages': True }) def get_date_modified(date, parent_id, media=None):