summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-11-01 19:32:42 +0100
committerdefault <nobody@localhost>2022-11-01 19:32:42 +0100
commitf957be5e842c1100cb377a91c2e3455f7288c99d (patch)
tree40cd2e0a211e0acaf38655d6afbe742c2b7e0212 /html.c
parent862560947b66769f8536651ff63facfb1283ada7 (diff)
Filter out carriage returns in note post web interface.
Diffstat (limited to 'html.c')
-rw-r--r--html.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/html.c b/html.c
index 46ff63d..5ec6e17 100644
--- a/html.c
+++ b/html.c
@@ -982,10 +982,11 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
}
if (content != NULL) {
- xs *msg = NULL;
- xs *c_msg = NULL;
+ xs *msg = NULL;
+ xs *c_msg = NULL;
+ xs *content_2 = xs_replace(content, "\r", "");
- msg = msg_note(&snac, content, NULL, in_reply_to, attach_list);
+ msg = msg_note(&snac, content_2, NULL, in_reply_to, attach_list);
c_msg = msg_create(&snac, msg);