Skip to content

Commit

Permalink
tlbidadapter missing semicolons (#4076)
Browse files Browse the repository at this point in the history
Fill in missing semicolons from TDID support update, which may be impacting TDID collection due to pb minification.  Also updating for consistency with remainder of adapter.
  • Loading branch information
cdsmith16 authored and harpere committed Aug 11, 2019
1 parent aa828d1 commit d6c394e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/tripleliftBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ function _buildPostBody(bidRequests, bidderRequest) {
banner: {
format: _sizes(bid.sizes)
}
}
};
});

let eids = handleConsortiaUserIds(bidderRequest)
let eids = handleConsortiaUserIds(bidderRequest);
if (eids.length > 0) {
data.user = {
ext: {eids}
}
};
}

return data;
Expand Down Expand Up @@ -126,7 +126,7 @@ function handleConsortiaUserIds(bidderRequest) {
rtiPartner: 'TDID'
}
}]
})
});
}

return eids;
Expand Down

0 comments on commit d6c394e

Please sign in to comment.