diff options
author | June McEnroe <june@causal.agency> | 2021-04-25 15:58:56 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-04-25 15:58:56 -0400 |
commit | b0b54d18dc0353583bf81eef2f1bb908e6b5e684 (patch) | |
tree | f23a50705de428278023a159b60bb46435346a85 | |
parent | Only highlight the direct target message header (diff) | |
download | bubger-b0b54d18dc0353583bf81eef2f1bb908e6b5e684.tar.gz bubger-b0b54d18dc0353583bf81eef2f1bb908e6b5e684.zip |
Fix address group spacing
Diffstat (limited to '')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c index 981dc4c..25565c6 100644 --- a/html.c +++ b/html.c @@ -53,7 +53,7 @@ static int htmlAddress(FILE *file, struct Address addr, bool comma) { mailto = htmlMailto(addr); template = Q([,]<a href="[mailto]">[name]</a>); } else if (addr.mailbox) { - template = "[mailbox]: "; + template = " [mailbox]:"; } else { template = ";"; } |