fix(desktop): show participant names for group DMs (#460)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Wes
2026-05-03 15:54:49 +00:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 1feb18e2e0
commit 0aa39df061
@@ -10,7 +10,8 @@ function isGenericDmChannelName(name: string) {
normalized.length === 0 ||
normalized === "dm" ||
normalized === "direct message" ||
normalized === "direct messages"
normalized === "direct messages" ||
/^group dm\s*(\(\d+\))?$/.test(normalized)
);
}