Skip to content

Commit

Permalink
improve error msg when provisioning failed
Browse files Browse the repository at this point in the history
  • Loading branch information
csuermann committed Jan 10, 2024
1 parent 432b8e4 commit 64b8500
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backendApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ app.post('/provision', async function (req, res) {
} catch (e) {
log.error('PROVISIONING FAILED: %s', e.message)
res.status(400).send({
error: 'provisioning failed! Try (re)-enabling the VSH Alexa skill!',
error:
'provisioning failed! Try (re)-enabling the VSH skill in the Alexa app!',
})
}
})
Expand Down

0 comments on commit 64b8500

Please sign in to comment.