0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 21:59:02 +02:00

modules/web_hook: Fix quotations around author name.

This commit is contained in:
Jason Volk 2019-08-12 03:29:11 -07:00
parent ad571640e0
commit 9b2a227294

View file

@ -390,7 +390,7 @@ github_handle__push(std::ostream &out,
const json::object author(commit["author"]);
out << " <b>"
<< author["name"]
<< json::string(author["name"])
<< "</b>"
;