Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private BidRequest updateBidRequest(BidRequest bidRequest, ExtImpNextMillennium

final Imp firstImp = bidRequest.getImp().getFirst();
final ObjectNode updatedImpExt = mapper.mapper().createObjectNode();
updatedImpExt.set("nextMillennium", nextMillenniumNode);
updatedImpExt.set("nextMillennium", nextMillenniumNode.get("nmmFlags"));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is incorrect, please observe the Go code one more time


final ObjectNode prebidNode = mapper.mapper().createObjectNode();
prebidNode.set("storedrequest", mapper.mapper().valueToTree(storedRequest));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"secure": 1,
"ext": {
"nextMillennium": {},
"nextMillennium": [ "1" ],
"prebid": {
"storedrequest": {
"id": "placement_id"
Expand Down
Loading