From 638f6025c556b321fbecc240b2bbf9ff39e96b84 Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 11 Dec 2025 09:38:08 +0200 Subject: [PATCH 1/4] Attekmi: add region to Markapp --- modules/smarthubBidAdapter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/smarthubBidAdapter.js b/modules/smarthubBidAdapter.js index 9565f318ead..ee5e119533e 100644 --- a/modules/smarthubBidAdapter.js +++ b/modules/smarthubBidAdapter.js @@ -33,6 +33,7 @@ const BASE_URLS = { 'attekmi': 'https://prebid.attekmi.co/pbjs', 'smarthub': 'https://prebid.attekmi.co/pbjs', 'markapp': 'https://markapp-prebid.attekmi.co/pbjs', + 'markapp-apac': 'https://markapp-apac-prebid.attekmi.co/pbjs', 'jdpmedia': 'https://jdpmedia-prebid.attekmi.co/pbjs', 'tredio': 'https://tredio-prebid.attekmi.co/pbjs', 'felixads': 'https://felixads-prebid.attekmi.co/pbjs', From b7a6797dd42dd6b5ec878425f34baad3f514a01f Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 11 Dec 2025 09:39:20 +0200 Subject: [PATCH 2/4] syntax fix --- modules/smarthubBidAdapter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/smarthubBidAdapter.js b/modules/smarthubBidAdapter.js index ee5e119533e..ba846ac8b70 100644 --- a/modules/smarthubBidAdapter.js +++ b/modules/smarthubBidAdapter.js @@ -51,14 +51,14 @@ const adapterState = {}; const _getPartnerUrl = (partner) => { const region = ALIASES[partner]?.region; - const partnerRegion = region ? `${partner}-${String(region).toLocaleLowerCase()}` : partner; + const partnerName = region ? `${partner}-${String(region).toLocaleLowerCase()}` : partner; const urls = Object.keys(BASE_URLS); - if (urls.includes(partnerRegion)) { - return BASE_URLS[partnerRegion]; + if (urls.includes(partnerName)) { + return BASE_URLS[partnerName]; } - return `${BASE_URLS[BIDDER_CODE]}?partnerName=${partnerRegion}`; + return `${BASE_URLS[BIDDER_CODE]}?partnerName=${partnerName}`; } const _getPartnerName = (bid) => String(bid.params?.partnerName || bid.bidder).toLowerCase(); From 9c352a57aa4a5b5d03c5fa2b1e62840afdcd4d0c Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 11 Dec 2025 10:09:27 +0200 Subject: [PATCH 3/4] Markapp uses only http protocol --- modules/smarthubBidAdapter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/smarthubBidAdapter.js b/modules/smarthubBidAdapter.js index ba846ac8b70..388f9b80bc8 100644 --- a/modules/smarthubBidAdapter.js +++ b/modules/smarthubBidAdapter.js @@ -32,8 +32,8 @@ const ALIASES = { const BASE_URLS = { 'attekmi': 'https://prebid.attekmi.co/pbjs', 'smarthub': 'https://prebid.attekmi.co/pbjs', - 'markapp': 'https://markapp-prebid.attekmi.co/pbjs', - 'markapp-apac': 'https://markapp-apac-prebid.attekmi.co/pbjs', + 'markapp': 'http://markapp-prebid.attekmi.co/pbjs', + 'markapp-apac': 'http://markapp-apac-prebid.attekmi.co/pbjs', 'jdpmedia': 'https://jdpmedia-prebid.attekmi.co/pbjs', 'tredio': 'https://tredio-prebid.attekmi.co/pbjs', 'felixads': 'https://felixads-prebid.attekmi.co/pbjs', From 3738263b7af7440dbe536a5779c19af864032d0c Mon Sep 17 00:00:00 2001 From: Victor Date: Mon, 15 Dec 2025 10:54:04 +0200 Subject: [PATCH 4/4] endpoints update to https --- modules/smarthubBidAdapter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/smarthubBidAdapter.js b/modules/smarthubBidAdapter.js index 77d03d40745..2a896a92499 100644 --- a/modules/smarthubBidAdapter.js +++ b/modules/smarthubBidAdapter.js @@ -33,8 +33,8 @@ const ALIASES = { const BASE_URLS = { 'attekmi': 'https://prebid.attekmi.co/pbjs', 'smarthub': 'https://prebid.attekmi.co/pbjs', - 'markapp': 'http://markapp-prebid.attekmi.co/pbjs', - 'markapp-apac': 'http://markapp-apac-prebid.attekmi.co/pbjs', + 'markapp': 'https://markapp-prebid.attekmi.co/pbjs', + 'markapp-apac': 'https://markapp-apac-prebid.attekmi.co/pbjs', 'jdpmedia': 'https://jdpmedia-prebid.attekmi.co/pbjs', 'tredio': 'https://tredio-prebid.attekmi.co/pbjs', 'felixads': 'https://felixads-prebid.attekmi.co/pbjs',