diff --git a/resources/lib/downloader.py b/resources/lib/downloader.py
index 73729378..642fdb9a 100644
--- a/resources/lib/downloader.py
+++ b/resources/lib/downloader.py
@@ -110,8 +110,6 @@ def get_filtered_section(parent_id, media=None, limit=None, recursive=None, sort
     if media and 'Photo' in media:
         params['Fields'] += ",Width,Height"
 
-    LOG.info(params)
-
     return  _get("Users/{UserId}/Items", params, server_id)
 
 def get_movies_by_boxset(boxset_id):
diff --git a/resources/lib/library.py b/resources/lib/library.py
index 1e0b4e7e..e5ad2fa8 100644
--- a/resources/lib/library.py
+++ b/resources/lib/library.py
@@ -180,11 +180,14 @@ class Library(threading.Thread):
                                      not self.writer_threads['userdata'] and not self.writer_threads['removed']):
             self.pending_refresh = False
             self.save_last_sync()
+            xbmc.executebuiltin('UpdateLibrary(video)')
 
+            """
             if xbmc.getCondVisibility('Window.IsActive(home)'):
                 xbmc.executebuiltin('UpdateLibrary(video)')
             else:
                 xbmc.executebuiltin('Container.Refresh')
+            """
 
     def stop_client(self):
         self.stop_thread = True