Skip to content
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

UOE-6785: Fixed NPE in interstitial.go #197

Merged
merged 24 commits into from
Aug 18, 2021
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1dcf910
OTT-105: VCR - Video Event Trackers (#152)
ShriprasadM May 5, 2021
c360511
OTT-172: Set default min ads to 1 from 2 (#153)
Pubmatic-Dhruv-Sonone May 11, 2021
d7f2b67
Revert "OTT-172: Set default min ads to 1 from 2 (#153)" (#154)
PubMatic-OpenWrap May 12, 2021
4105725
UOE-6319: OpenWrap S2S: Prebid Server Version Update to 0.157.0 (#146)
sachin-pubmatic May 14, 2021
fa6d819
UOE-6319: Upgraded prebid-server to 0.157.0 (#156)
sachin-pubmatic May 14, 2021
2037771
OTT-172: Set Default min Ads value to 1 from 2 (#161)
Pubmatic-Dhruv-Sonone May 25, 2021
80d3d40
UOE-6444:updating unruly URLs (#159)
PubMatic-OpenWrap May 25, 2021
a8aed1b
UOE-6240: Openwrap S2S: Send gpt slot name in extension field (#162)
sachin-pubmatic May 25, 2021
9860ee0
OTT-192: Ensure sURL (Event Tracker) and orig (OW Logger) parameter v…
Pubmatic-Dhruv-Sonone Jun 2, 2021
ca9b117
OTT-197: Log Partner bidder code in video event tracker (#168)
Pubmatic-Dhruv-Sonone Jun 15, 2021
7c2e2d2
OTT-223 Adding Client Configurations
pm-viral-vala Jul 6, 2021
a8fb2e7
UOE-6646: Added label adapter_name for tls_handshake_time stat
sachin-pubmatic Jul 9, 2021
b420a11
Fixed typo
sachin-pubmatic Jul 9, 2021
62934aa
OTT-227 Fixing Panic Issue for Prebid Adapter (#176)
pm-viral-vala Jul 9, 2021
c16692e
Merge pull request #177 from PubMatic-OpenWrap/UOE-6646
pm-isha-bharti Jul 14, 2021
6c8508d
OTT-216: add all SupportDeal features (#183)
Pubmatic-Dhruv-Sonone Jul 27, 2021
4ec85b0
UOE-6525: In-app OTT Add Support for dctr and pmzoneid (#170)
sachin-pubmatic Jul 27, 2021
721dfc1
UOE-6534: OW Prebid-server: Use fallback mechanism for get slot name …
sachin-pubmatic Jul 27, 2021
3c564c7
OTT-48 VAST Bidder Phase 1 (#186)
pm-viral-vala Jul 27, 2021
b594df4
UOE-6610: Upgrade prebid-server to 0.170.0 (#190)
sachin-pubmatic Aug 17, 2021
b14bfcd
UOE-6774: Fixed Spotx GDPR issue (#195)
sachin-pubmatic Aug 17, 2021
3987e05
Handled NPE in interstitial.go
sachin-pubmatic Aug 18, 2021
de47e05
Merged ci
sachin-pubmatic Aug 18, 2021
0e9d996
Fixed go.sum
sachin-pubmatic Aug 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion endpoints/openrtb2/interstitial.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func processInterstitials(req *openrtb_ext.RequestWrapper) error {
return err
}
prebid = deviceExt.GetPrebid()
if prebid.Interstitial == nil {
if prebid == nil || prebid.Interstitial == nil {
// No special interstitial support requested, so bail as there is nothing to do
return nil
}
Expand Down