Skip to content

Commit

Permalink
Merge pull request #84 from bitmovin/feat/isSlateField
Browse files Browse the repository at this point in the history
  • Loading branch information
saravanans-github authored Oct 27, 2024
2 parents fdc8981 + 484823f commit a86294a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added
- Default value of `false` for `c3.ad.isSlate` for client side ad insertion per Conviva Custom Ad Manager integration docs

## 2.7.1 - 2024-09-24
### Fixed
- Reporting wrong ad position for mid-roll VMAP ads
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,9 @@ private Map<String, Object> adStartedToAdInfo(PlayerEvent.AdStarted adStartedEve
adInfo.put(ConvivaSdkConstants.FRAMEWORK_VERSION, Player.getSdkVersion());
}

// default value for isSlate is false for Custom Ad Manager integration
adInfo.put("c3.ad.isSlate", "false");

double scheduleTime;
if (activeAdBreak != null) {
scheduleTime = activeAdBreak.getScheduleTime();
Expand Down

0 comments on commit a86294a

Please sign in to comment.