From 1cf118c6f40e55027b646a9410a17dfbca257d07 Mon Sep 17 00:00:00 2001 From: Sebastian Hengst Date: Wed, 24 Apr 2024 11:46:36 +0200 Subject: [PATCH] Bug 1866594 - fix bugfiler to use test name in summary if crash signature missing --- ui/shared/BugFiler.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/shared/BugFiler.jsx b/ui/shared/BugFiler.jsx index add2635ccfb..46c328d1266 100644 --- a/ui/shared/BugFiler.jsx +++ b/ui/shared/BugFiler.jsx @@ -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`;