We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a race condition causing this code (in DFP.ts) to run even when the slot does end up having a contentUrl:
DFP.ts
if (!slot.getContentUrl()) { this.ad.isEmpty = true; dispatchEvent( Number(this.id.substring(this.id.length, this.id.length - 1)), LOG_LEVELS.WARN, 'DFP Network', 'Ad sizes missing. Bypassing ad.', ); resolve(); }
This causes ad lifecycle events intended for after the ad renders to think that the ad is empty when it is not.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a race condition causing this code (in
DFP.ts
) to run even when the slot does end up having a contentUrl:This causes ad lifecycle events intended for after the ad renders to think that the ad is empty when it is not.
The text was updated successfully, but these errors were encountered: