Made setActivityStarted a little more robust [HFJ-1474]

pull/17/head
Paal Joergensen 2015-12-16 15:42:26 +01:00
parent 2d0e409ac4
commit e6ec257c6d
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ H5P.EventDispatcher.prototype.triggerXAPIScored = function (score, maxScore, ver
H5P.EventDispatcher.prototype.setActivityStarted = function() {
if (this.activityStartTime === undefined) {
// Don't trigger xAPI events in the editor
if (H5PIntegration.contents['cid-' + this.contentId] !== undefined) {
if (this.contentId !== undefined && H5PIntegration.contents !== undefined && H5PIntegration.contents['cid-' + this.contentId] !== undefined) {
this.triggerXAPI('attempted');
}
this.activityStartTime = Date.now();
@ -114,4 +114,4 @@ H5P.xAPICompletedListener = function (event) {
var contentId = event.getVerifiedStatementValue(['object', 'definition', 'extensions', 'http://h5p.org/x-api/h5p-local-content-id']);
H5P.setFinished(contentId, score, maxScore);
}
};
};