fix(slack): preserve completed native progress titles · openclaw/openclaw@975d2e9
vincentkoc
·
2026-06-17
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -80,7 +80,7 @@ function legacyLineDetail(line: ChannelProgressDraftLine, maxChars: number): str
|
80 | 80 | |
81 | 81 | function lineTaskTitle(line: ChannelProgressDraftLine, maxLineChars: number): string { |
82 | 82 | const label = line.label.replace(/\s+/g, " ").trim() || line.toolName || line.kind || "Update"; |
83 | | -const detail = lineDetailParts(line).join(" · "); |
| 83 | +const detail = lineDetailParts(line).join(" · ") || line.status?.trim(); |
84 | 84 | const fallback = line.text.replace(/\s+/g, " ").trim(); |
85 | 85 | if (detail) { |
86 | 86 | return compactTitle(`${label} — ${compactDetail(detail, maxLineChars)}`); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。