Skip to content

Commit

Permalink
Deepintent: secure flag set using proper protocol value (prebid#7655)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthshah51999 authored and Chris Pabst committed Jan 10, 2022
1 parent 0d2ca93 commit cbeded4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/deepintentBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function buildImpression(bid) {
impression = {
id: bid.bidId,
tagid: bid.params.tagId || '',
secure: window.location.protocol === 'https' ? 1 : 0,
secure: window.location.protocol === 'https:' ? 1 : 0,
displaymanager: 'di_prebid',
displaymanagerver: DI_M_V,
ext: buildCustomParams(bid)
Expand Down

0 comments on commit cbeded4

Please sign in to comment.