Skip to content

Commit

Permalink
when position is not available, use "unknown" as the default position (
Browse files Browse the repository at this point in the history
  • Loading branch information
moonshells authored and snapwich committed Mar 1, 2018
1 parent f169a85 commit 1a3eeee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rubiconBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const spec = {
let slotData = {
site_id: params.siteId,
zone_id: params.zoneId,
position: params.position || 'btf',
position: params.position || 'unknown',
floor: parseFloat(params.floor) > 0.01 ? params.floor : 0.01,
element_id: bidRequest.adUnitCode,
name: bidRequest.adUnitCode,
Expand Down

0 comments on commit 1a3eeee

Please sign in to comment.