Skip to content

Commit

Permalink
Update apacdexBidAdapter.js (#10502)
Browse files Browse the repository at this point in the history
Fix confusion about screen width and height
  • Loading branch information
thuyhq committed Sep 19, 2023
1 parent 07f8b4e commit 584e7c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/apacdexBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export const spec = {

payload.device = {};
payload.device.ua = navigator.userAgent;
payload.device.height = window.screen.width;
payload.device.width = window.screen.height;
payload.device.height = window.screen.height;
payload.device.width = window.screen.width;
payload.device.dnt = _getDoNotTrack();
payload.device.language = navigator.language;

Expand Down

0 comments on commit 584e7c0

Please sign in to comment.