-
Notifications
You must be signed in to change notification settings - Fork 181
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
OpenX adapter: Pass rewarded video signal #712
Conversation
@Builder | ||
public class OpenxVideoExt { | ||
|
||
@JsonProperty("rewarded") |
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.
Minor. We don't need annotation here, since the field name will not be changed after marshaling to JSON.
|
||
if (resolveImpType(imp) == OpenxImpType.video | ||
&& prebidImpExt != null | ||
&& prebidImpExt.getIsRewardedInventory() != null |
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.
Hint: we can use Objects.equals(...)
helper here, so will avoid one check.
Appreciate the feedback, incorporated your suggestions. |
4c57b13
to
3a56d77
Compare
@rpanchyk, is there anything else we need to do for this? |
No, nothing more, thank you. |
Sorry, but planned to include in 1.38.0 release. Along with this PR, next ones will be merged: |
No description provided.