Skip to content

Commit

Permalink
Pubmatic analytics: fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dgirardi committed Jan 22, 2025
1 parent b19ae7c commit 94c712c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/pubmaticAnalyticsAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function getFloorsCommonField (floorData) {
if (!floorData) return;
const { location, fetchStatus, floorProvider, modelVersion } = floorData;
return {
ffs: {
ffs: {
[FLOOR_VALUES.SUCCESS]: 1,
[FLOOR_VALUES.ERROR]: 2,
[FLOOR_VALUES.TIMEOUT]: 4,
Expand Down Expand Up @@ -535,7 +535,7 @@ function executeBidWonLoggerCall(auctionId, adUnitId) {
if (floorData) {
const floorRootValues = getFloorsCommonField(floorData.floorRequestData);
const { fsrc, fp, mv } = floorRootValues || {};
const params = { fsrc, fp, fmv: mv };
const params = { fsrc, fp, fmv: mv };
Object.entries(params).forEach(([key, value]) => {
if (value !== undefined) {
pixelURL += `&${key}=${enc(value)}`;
Expand Down

0 comments on commit 94c712c

Please sign in to comment.