diff options
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index c64a087e8..56d21cf5b 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -157,6 +157,9 @@ func (ctx *linux) Parse(output []byte) *Report { return nil } title, report, format := extractDescription(ctx.extractConsoleOutput(output[rep.StartPos:]), oops) + if title == "" { + title, report, format = extractDescription(output[rep.StartPos:], oops) + } rep.Title = title rep.Corrupted = ctx.isCorrupted(title, report, format) // Executor PIDs are not interesting. |
