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 Mar 16, 2023
1 parent f703768 commit fd5cb47
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 fd5cb47

Please sign in to comment.