Skip to content

Commit

Permalink
Bug 1866594 - fix bugfiler to use test name in summary if crash signa…
Browse files Browse the repository at this point in the history
…ture missing
  • Loading branch information
Archaeopteryx committed Apr 29, 2024
1 parent 13a6367 commit 1cf118c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/shared/BugFiler.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class BugFilerClass extends React.Component {
].some((regexp) => regexp.test(summaryString));
}

if (crashSignatures) {
if (crashSignatures.length > 0) {
isTestPath = false;
const parts = summaryString.split(' | ');
summaryString = `${parts[0]} | single tracking bug`;
Expand Down

0 comments on commit 1cf118c

Please sign in to comment.