0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-27 07:54:05 +01:00

modules/web_hook: Use non-html newline for issue comment.

This commit is contained in:
Jason Volk 2020-05-09 19:19:16 -07:00
parent e928c7582e
commit 5c76b6c976

View file

@ -1061,7 +1061,7 @@ github_handle__issue_comment(std::ostream &out,
auto lines(split(body, delim)); do
{
out << lines.first
<< "<br />"
<< "\\n"
;
lines = split(lines.second, delim);