Adds error stack information in prod environment for certificates

This commit is contained in:
chaptergy
2020-10-08 15:30:13 +02:00
parent 3fec135fe5
commit 07e78aec48
5 changed files with 5 additions and 5 deletions

View File

@ -228,7 +228,7 @@ module.exports = Mn.View.extend({
})
.catch(err => {
let more_info = '';
if(err.code === 500){
if(err.code === 500 && err.debug){
try{
more_info = JSON.parse(err.debug).debug.stack.join("\n");
} catch(e) {}