Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iTIP: convert \n from iCalendar to “\r\n <br>” to the MSA #5050

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion imap/http_caldav_sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ static void HTMLencode(struct buf *output, const char *input)
htmlEncodeEntities((unsigned char *) buf_base(output), &outlen,
(unsigned char *) input, &inlen, 0);
buf_truncate(output, outlen);
buf_replace_all(output, "\n", "\n <br>");
buf_replace_all(output, "\n", "\r\n <br>");
}

#define TEXT_INDENT " "
Expand Down