TypeError: Cannot read property 'join' of undefined
Closed this issue · 1 comments
prath-devops commented
.npm-global/lib/node_modules/cmd-jira/lib/jira/describe.js:48
return console.log(res.body.errorMessages.join('\n'));
Please change
describe.js:48
return console.log(res.body.errorMessages.join('\n'));
to
return console.log((res.body.errorMessages || [res.error]).join('\n'));
palashkulsh commented
Done. Thanks @prath-devops