fix(channel): harden About-enrich edge cases from review

- apply_channel_details: (branding.get("channel") or {}) so a "channel": null
  in brandingSettings can't AttributeError-abort the enrich batch.
- topicLabels: drop empty labels so a malformed topic URL can't render a blank chip.
This commit is contained in:
2026-07-12 16:17:17 +02:00
parent 0c26464c90
commit 05aa70ed33
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -38,7 +38,8 @@ function topicLabels(urls: string[]): string[] {
} catch {
/* keep raw */
}
seen.add(label.replace(/_/g, " "));
label = label.replace(/_/g, " ").trim();
if (label) seen.add(label);
}
return [...seen];
}