Skip to content

Commit

Permalink
fix(FEC-9002): analytics aren't being sent (#230)
Browse files Browse the repository at this point in the history
The entryId is not being evaluated as the dictionary sent to the evaluation was changed and it didn't include the new entry ID.
All analytics plugins are validating that they have a valid entry ID and because they don't then no event is fired.
  • Loading branch information
OrenMe authored Apr 3, 2019
1 parent ffa735f commit b2e8a86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kaltura-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ class KalturaPlayer extends FakeEventTarget {
*/
configure(config: Object = {}): void {
config = supportLegacyOptions(config);
// $FlowFixMe
evaluatePluginsConfig(config.plugins, this.config);
const configDoctionary = Utils.Object.mergeDeep({}, this.config, config);
evaluatePluginsConfig(config.plugins, configDoctionary);
this._localPlayer.configure(config);
const uiConfig = config.ui;
if (uiConfig) {
Expand Down

0 comments on commit b2e8a86

Please sign in to comment.