Skip to content

Commit

Permalink
send requestCount even when it is 0 for BTO (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangan07 authored and jsadwith committed Mar 29, 2023
1 parent 376afbd commit 6700e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/kargoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function buildRequests(validBidRequests, bidderRequest) {
});

const reqCount = getRequestCount()
if (reqCount != null && reqCount > 0) {
if (reqCount != null) {
krakenParams.requestCount = reqCount;
}

Expand Down

0 comments on commit 6700e5a

Please sign in to comment.