From 67dfca32b5aa4866ba5cab911629078db0b778b5 Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 16 Jun 2019 13:49:42 +0200 Subject: [PATCH] Fix widgets not being populated after first PKC sync --- resources/lib/sync.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/lib/sync.py b/resources/lib/sync.py index 8808972b..46d53d6d 100644 --- a/resources/lib/sync.py +++ b/resources/lib/sync.py @@ -184,6 +184,9 @@ class Sync(backgroundthread.KillableThread): install_sync_done = True initial_sync_done = True utils.settings('dbCreatedWithVersion', v.ADDON_VERSION) + # Reload skin in order to ensure items showing up on Kodi + # Homescreen + xbmc.executebuiltin('ReloadSkin()') if library_sync.PLAYLIST_SYNC_ENABLED: playlist_monitor = playlists.kodi_playlist_monitor() self.start_fanart_download(refresh=False)