Skip to content

Commit

Permalink
Merge pull request #255 from auth0/fix-onfido-missing-trailing-semicolon
Browse files Browse the repository at this point in the history
Fix onfido missing trailing semicolon
  • Loading branch information
shushen authored Sep 21, 2020
2 parents fa3c850 + 7d5b5b4 commit fbcd16f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rules-templates",
"version": "0.13.1",
"version": "0.13.2",
"description": "Auth0 Rules Repository",
"main": "./rules",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/rules/onfido-idv.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function onfidoIdentityVerification(user, context, callback) {
});

user.app_metadata = user.app_metadata || {};
user.app_metadata.onfido = user.app_metadata.onfido || {}
user.app_metadata.onfido = user.app_metadata.onfido || {};

if (ruleUtils.isRedirectCallback && ruleUtils.queryParams.session_token && "true" === ruleUtils.queryParams.onfido_idv) {
// User is back from the Onfido experience and has a session token to validate and assign to user meta
Expand Down

0 comments on commit fbcd16f

Please sign in to comment.