From 90b5e938e390b382215f403929d46ca886f24fd7 Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Tue, 15 Feb 2022 11:55:24 +0100 Subject: [PATCH] stats: fix Matomo cookie domains setting It was exported to the GON as `cookie_domain`, but imported by the tracking code as `cookieDomain`. --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 3fbbef21a..a257b8f0c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -276,7 +276,7 @@ class ApplicationController < ActionController::Base matomo = Rails.application.secrets.matomo { - cookie_domain: matomo[:cookie_domain], + cookieDomain: matomo[:cookie_domain], domain: matomo[:domain], enabled: matomo[:enabled], host: matomo[:host],