Skip to content

Commit

Permalink
Changed serialization method
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lays committed Jun 4, 2021
1 parent 6ecfb48 commit 4fc0ad3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/invamiaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const spec = {
height,
};

const payloadString = new URLSearchParams(payload).toString();
const payloadString = Object.keys(payload).map(k => k + '=' + encodeURIComponent(payload[k])).join('&');

return {
method: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4fc0ad3

Please sign in to comment.