From acc1a353494b293914bb12969d3f90727cfc6027 Mon Sep 17 00:00:00 2001 From: Yann Pravo Date: Tue, 3 Oct 2017 18:24:54 +0200 Subject: [PATCH] http -> https --- modules/adomikAnalyticsAdapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/adomikAnalyticsAdapter.js b/modules/adomikAnalyticsAdapter.js index 46e917b8a3a..c9bd7990ec8 100644 --- a/modules/adomikAnalyticsAdapter.js +++ b/modules/adomikAnalyticsAdapter.js @@ -117,7 +117,7 @@ adomikAdapter.sendTypedEvent = function() { splittedUrl.forEach((split, i) => { const partUrl = `${split}&id=${adomikAdapter.currentContext.id}&part=${i}&on=${splittedUrl.length - 1}`; const img = new Image(1, 1); - img.src = 'http://' + adomikAdapter.currentContext.url + '/?q=' + partUrl; + img.src = 'https://' + adomikAdapter.currentContext.url + '/?q=' + partUrl; }) };