We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 450b404 commit 00c5afbCopy full SHA for 00c5afb
1 file changed
workers/grouper/src/index.ts
@@ -252,7 +252,7 @@ export default class GrouperWorker extends Worker {
252
frame.sourceCode = frame.sourceCode.map((line: SourceCodeLine) => {
253
return {
254
line: line.line,
255
- content: rightTrim(line.content, MAX_CODE_LINE_LENGTH),
+ content: line.content !== undefined ? rightTrim(line.content, MAX_CODE_LINE_LENGTH) : line.content,
256
};
257
});
258
0 commit comments