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 27e4be3 commit 30199d6Copy full SHA for 30199d6
netstack.js
@@ -159,7 +159,8 @@
159
// look for the language(s) in the stack trace
160
lang = this.detectLanguagesInOrder(lines, languagesRegex);
161
162
- if (lang === '') return;
+ // if no language is found, return
163
+ if (lang.length === 0) return;
164
165
// if multiline option is true, check if the language is the same for all lines
166
if (typeof lang === 'object') {
0 commit comments