We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dcce42 commit 745c111Copy full SHA for 745c111
lib/parsers.js
@@ -11,7 +11,7 @@ module.exports.parseText = function parseText(message, kwargs) {
11
12
module.exports.parseError = function parseError(err, kwargs, cb) {
13
utils.parseStack(err, function(frames) {
14
- if (kwargs.message === undefined) {
+ if (typeof kwargs.message === 'undefined') {
15
kwargs.message = err.name + ': ' + (err.message || '<no message>');
16
}
17
kwargs['exception'] = [{
0 commit comments