diff options
author | default <nobody@localhost> | 2024-02-27 13:21:59 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-02-27 13:21:59 +0100 |
commit | 067747cc7cbfce5fd9f9ce2510a9d311f05b504a (patch) | |
tree | 00e07919ec7546f5fb193a7cbae9916c6a6956dd /format.c | |
parent | 336f731a51b43c812c915191b3d536462c6e1115 (diff) |
Also trim , at the end of http links.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ static xs_str *format_line(const char *line, xs_list **attach) else if (xs_startswith(v, "http")) { xs *u = xs_replace(v, "#", "#"); - xs *v2 = xs_strip_chars_i(xs_dup(u), ".)"); + xs *v2 = xs_strip_chars_i(xs_dup(u), ".,)"); const char *mime = xs_mime_by_ext(v2); |