From bfce96baf1c755b4380919ea5f1f9a0118d7e1ba Mon Sep 17 00:00:00 2001 From: "le.labat" Date: Mon, 29 Jan 2024 10:25:26 +0100 Subject: [PATCH] Grid bid adapter : do not send topics along requests to the backend --- modules/gridBidAdapter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/gridBidAdapter.js b/modules/gridBidAdapter.js index b2350c0a61c..7147864a2e6 100644 --- a/modules/gridBidAdapter.js +++ b/modules/gridBidAdapter.js @@ -466,6 +466,7 @@ export const spec = { }, ajaxCall: function(url, cb, data, options) { + options.browsingTopics = false; return ajax(url, cb, data, options); },