Skip to content

Commit 1e8d550

Browse files
Format traces as bullet list (MOD-32) (#3220)
* Format traces as bullet list * Fix fmt
1 parent acc379d commit 1e8d550

File tree

1 file changed

+4
-2
lines changed
  • apps/labrinth/src/routes/internal

1 file changed

+4
-2
lines changed

apps/labrinth/src/routes/internal/admin.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,10 @@ pub async fn delphi_result_ingest(
243243

244244
for (issue, trace) in &body.issues {
245245
for path in trace.keys() {
246-
thread_header
247-
.push_str(&format!("\n issue {issue} found at file {}", path));
246+
thread_header.push_str(&format!(
247+
"\n\n- issue {issue} found at file {}",
248+
path
249+
));
248250
}
249251
}
250252

0 commit comments

Comments
 (0)