You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the getContextFromPlcmt function, when plcmt is 2 and getContextFromPlcmt is 0, it returns out, rather than returning accompanying_content_pre_roll as expected.
That's because (!ortbStartDelay) in line 1021 evaluates to true, so the function just exits. This may need to be (typeof ortbStartDelay !== undefined).
The text was updated successfully, but these errors were encountered:
Prebid.js/modules/appnexusBidAdapter.js
Lines 1015 to 1036 in b557f04
In the
getContextFromPlcmt
function, whenplcmt
is2
andgetContextFromPlcmt
is0
, it returns out, rather than returningaccompanying_content_pre_roll
as expected.That's because
(!ortbStartDelay)
in line 1021 evaluates to true, so the function just exits. This may need to be(typeof ortbStartDelay !== undefined)
.The text was updated successfully, but these errors were encountered: