diff --git a/src/app/utils.js b/src/app/utils.js index 4189a2b89d..1abfeb1219 100644 --- a/src/app/utils.js +++ b/src/app/utils.js @@ -19,7 +19,7 @@ function fileNameFromKey (key) { } function errortype (message) { - return message.match(/^.*:[0-9]*:[0-9]* Warning: /) ? 'warning' : 'error' + return message.match(/^(.*:[0-9]*:[0-9]* )?Warning: /) ? 'warning' : 'error' } module.exports = {