-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
help wantedExtra attention is neededExtra attention is needed
Description
When the bidWon event is fired the bid.meta.paf property is undefined and the downstream logic to register the transmission response is not available. See the following code snippet.
// Generate and store the PAF Audit Log
// once the winner is elected.
pbjs.onEvent("bidWon", bid => {
let pafObj = bid.meta.paf;
if (pafObj === undefined) {
return;
}
PAF.queue.push(() => {
PAF.registerTransmissionResponse({
prebidTransactionId: bid.transactionId,
adUnitCode: bid.adUnitCode,
contentId: pafObj.contentId
}, pafObj.transmission);
});
});This might relate to the demo configuration rather than the demo code.
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is needed