Check that score is a number before storing it to the database.
HFP-173
(cherry picked from commit bae3145
)
pull/31/head
1.10.0
parent
b4949c0d83
commit
426f51caa0
|
@ -1637,7 +1637,7 @@ H5P.shuffleArray = function (array) {
|
||||||
* Reported time consumption/usage
|
* Reported time consumption/usage
|
||||||
*/
|
*/
|
||||||
H5P.setFinished = function (contentId, score, maxScore, time) {
|
H5P.setFinished = function (contentId, score, maxScore, time) {
|
||||||
if (score && H5PIntegration.postUserStatistics === true) {
|
if (typeof score === 'number' && H5PIntegration.postUserStatistics === true) {
|
||||||
/**
|
/**
|
||||||
* Return unix timestamp for the given JS Date.
|
* Return unix timestamp for the given JS Date.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue