Ignore non-string mail CLI recipients (#1824)

This commit is contained in:
red person
2026-06-29 05:41:22 -07:00
committed by GitHub
parent 893e490cdc
commit 9731048ecd
2 changed files with 9 additions and 0 deletions
+2
View File
@@ -108,6 +108,8 @@ def _q(name: str) -> str:
def _split_recipients(value: str) -> list[str]:
if not isinstance(value, str):
return []
return [r.strip() for r in (value or "").split(",") if r.strip()]