diff --git a/app/controllers/admin/communication/websites_controller.rb b/app/controllers/admin/communication/websites_controller.rb
index d674653a8f63bff45649af56199a94ee3a9beab8..1b27bcfe166107d46f9c6198806fbce9c435771a 100644
--- a/app/controllers/admin/communication/websites_controller.rb
+++ b/app/controllers/admin/communication/websites_controller.rb
@@ -59,8 +59,6 @@ class Admin::Communication::WebsitesController < Admin::Communication::Websites:
 
   def update
     if @website.update_and_sync(website_params)
-      # TODO better place, background job once w week?
-      @website.screenshot!
       redirect_to [:admin, @website], notice: t('admin.successfully_updated_html', model: @website.to_s)
     else
       breadcrumb
diff --git a/app/models/communication/website/with_connected_objects.rb b/app/models/communication/website/with_connected_objects.rb
index d04e87e182308c3a7e82ae102ddfc46924e57a11..62a4654e3158ae13632d82c028c46244dc118623 100644
--- a/app/models/communication/website/with_connected_objects.rb
+++ b/app/models/communication/website/with_connected_objects.rb
@@ -21,6 +21,7 @@ module Communication::Website::WithConnectedObjects
     sync_with_git_without_delay
     destroy_obsolete_git_files_without_delay
     get_current_theme_version!
+    screenshot!
   end
   handle_asynchronously :clean_and_rebuild, queue: :cleanup
 
@@ -88,9 +89,9 @@ module Communication::Website::WithConnectedObjects
     University::Organization.where(id: ids)
   end
 
-  def connected_publications
-    ids = connections.where(indirect_object_type: 'Research::Publication').pluck(:indirect_object_id)
-    Research::Publication.where(id: ids)
+  def connected_hal_publications
+    ids = connections.where(indirect_object_type: 'Research::Hal::Publication').pluck(:indirect_object_id)
+    Research::Hal::Publication.where(id: ids)
   end
 
   # ensure the object "website" respond to both is_direct_object? and is_indirect_object? as website doesn't include neither as_direct_object nor as_indirect_object
diff --git a/app/services/screenshot.rb b/app/services/screenshot.rb
index 37934418e00b07f7dcc25c95aafd02d40b1f2a04..156e2d599cdb397d1acc150474ffee7b978e3f9d 100644
--- a/app/services/screenshot.rb
+++ b/app/services/screenshot.rb
@@ -23,6 +23,9 @@ class Screenshot
         meta: false,
         waitUntil: 'load',
         device: 'Macbook Pro 15'
+      },
+      headers: {
+        x-api-key: ENV['MICROLINK_API_KEY']
       }
     })
     data = JSON.parse(response.body)