Skip to content

Commit

Permalink
Merge branch 'release-2.20.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
marpesia committed Apr 22, 2021
2 parents dc4793d + 7d4f898 commit eb4b337
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oat-sa/tao-test-runner-qti",
"version": "2.20.3",
"version": "2.20.4",
"description": "TAO Test Runner QTI implementation",
"files": [
"dist",
Expand Down
10 changes: 5 additions & 5 deletions src/proxy/cache/actionStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ export default function actionStoreFatory(id) {
* @returns {Promise} resolves when the action is stored
*/
push: function push(action, params, timestamp) {
actionQueue.push({
action: action,
timestamp: timestamp || Date.now(),
parameters: params
});
return loadStore().then(function(actionStore) {
actionQueue.push({
action: action,
timestamp: timestamp || Date.now(),
parameters: params
});
return actionStore.setItem(storeKey, actionQueue);
});
},
Expand Down

0 comments on commit eb4b337

Please sign in to comment.