-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rhythmone Adapter - Remove usersync, devicetype, and bad banners #3927
Conversation
Hmm, rubicon's got failing tests? That failure is not related to this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
I am getting 204 response
while hitting http://tag.1rx.io/rmp/80184/0/mvo?z=1r&hbv=2.21.0-pre,2.0.1
url. I am making a request from India
. Can you check if you need to provide me any access to the content so that I can test your changes.
modules/rhythmoneBidAdapter.js
Outdated
@@ -92,15 +36,21 @@ function RhythmOneBidAdapter() { | |||
impObj.secure = win.location.protocol === 'https:' ? 1 : 0; | |||
|
|||
if (utils.deepAccess(BRs[i], 'mediaTypes.banner') || utils.deepAccess(BRs[i], 'mediaType') === 'banner') { | |||
impObj.banner = frameBanner(BRs[i]); | |||
let banner = frameBanner(BRs[i]); | |||
if (banner !== false) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we simplify it by if(banner)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
OK, the comment's been addressed. We've configured our system to consistently return ads. @sumit116 could you try again? The ci error above is unrelated to this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could not get the response yet. Getting 204 No content
in response. Approving the PR based on the request object passed.
Type of change
Description of change
bhaines@rhythmone.com