Skip to content

Commit

Permalink
feat(FEC-9156): getting bumper from playback context (#252)
Browse files Browse the repository at this point in the history
Consider plugins come from the provider
  • Loading branch information
yairans authored Jul 10, 2019
1 parent 576ac0b commit dfe18ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kaltura-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class KalturaPlayer extends FakeEventTarget {
Utils.Object.mergeDeep(playerConfig.sources, this._localPlayer.config.sources);
Utils.Object.mergeDeep(playerConfig.session, this._localPlayer.config.session);
Object.keys(this._localPlayer.config.plugins).forEach(name => {
playerConfig.plugins[name] = {};
playerConfig.plugins[name] = playerConfig.plugins[name] || {};
});
addKalturaPoster(playerConfig.sources, mediaConfig.sources, this._localPlayer.dimensions);
addKalturaParams(this, playerConfig);
Expand Down

0 comments on commit dfe18ac

Please sign in to comment.